Class ConnectorCompletedEventArgs
This argument is used for events, when a connector has completed a certain action.
Inherited Members
Namespace: TeleScope.Connectors.Abstractions.Events
Assembly: TeleScope.Connectors.Abstractions.dll
Syntax
public class ConnectorCompletedEventArgs : ConnectorEventArgs
Constructors
| Improve this Doc View SourceConnectorCompletedEventArgs(String, Object)
The default constructor sets the name of the invoking connector (or sender) and the response data.
Declaration
public ConnectorCompletedEventArgs(string name, object response)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | The name of the sender. |
System.Object | response | The generic response data of the sender, provided to the client-side. |
Properties
| Improve this Doc View SourceResponse
Gets the generic response data that should be converted on the client-side.
Declaration
public object Response { get; }
Property Value
Type | Description |
---|---|
System.Object |