Class BindingCalledEventArgs
Event arguments present when the BindingCalled event is raised.
public class BindingCalledEventArgs : EventArgs- Inheritance
- 
      
      
      BindingCalledEventArgs
- Inherited Members
Constructors
BindingCalledEventArgs(long, string, string)
Initializes a new instance of the BindingCalledEventArgs type.
public BindingCalledEventArgs(long executionContextId, string name, string payload)Parameters
- executionContextIdlong
- The execution ID of the call to the binding. 
- namestring
- The name of the call to the binding. 
- payloadstring
- The payload of the call to the binding. 
Properties
ExecutionContextId
Gets the execution context ID of the call to the binding.
public long ExecutionContextId { get; }Property Value
Name
Gets the name of the call to the binding.
public string Name { get; }Property Value
Payload
Gets the payload of the call to the binding.
public string Payload { get; }