TopLevelOperators
Namespace: FSharp.Interop.Dynamic
Main operators for dynamic invocation
Functions and values
Function or value | Description |
( !? ) target
Signature: target:obj -> 'TResult
Type parameters: 'TResult
|
Prefix operator that allows direct dynamic invocation of the object
CompiledName: op_BangQmark
|
( ? ) target name
Signature: target:obj -> name:string -> 'TResult
Type parameters: 'TResult
|
Dynamic get property or method invocation
CompiledName: op_Dynamic
|
( ?<- ) target name value
Signature: target:obj -> name:string -> value:'TValue -> unit
Type parameters: 'TValue
|
Dynamic set property
CompiledName: op_DynamicAssignment
|