ClientOperation Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the ClientOperation class.
Overloads
ClientOperation(ClientRuntime, String, String) |
Initializes a new instance of the ClientOperation class using the specified ClientRuntime, name, and action values. |
ClientOperation(ClientRuntime, String, String, String) |
Initializes a new instance of the ClientOperation class using the specified ClientRuntime, name, action, and reply action values. |
ClientOperation(ClientRuntime, String, String)
- Source:
- ClientOperation.cs
- Source:
- ClientOperation.cs
- Source:
- ClientOperation.cs
Initializes a new instance of the ClientOperation class using the specified ClientRuntime, name, and action values.
public:
ClientOperation(System::ServiceModel::Dispatcher::ClientRuntime ^ parent, System::String ^ name, System::String ^ action);
public ClientOperation (System.ServiceModel.Dispatcher.ClientRuntime parent, string name, string action);
new System.ServiceModel.Dispatcher.ClientOperation : System.ServiceModel.Dispatcher.ClientRuntime * string * string -> System.ServiceModel.Dispatcher.ClientOperation
Public Sub New (parent As ClientRuntime, name As String, action As String)
Parameters
- parent
- ClientRuntime
The containing ClientRuntime object.
- name
- String
The name of the operation.
- action
- String
The action of the operation.
Applies to
ClientOperation(ClientRuntime, String, String, String)
- Source:
- ClientOperation.cs
- Source:
- ClientOperation.cs
- Source:
- ClientOperation.cs
Initializes a new instance of the ClientOperation class using the specified ClientRuntime, name, action, and reply action values.
public:
ClientOperation(System::ServiceModel::Dispatcher::ClientRuntime ^ parent, System::String ^ name, System::String ^ action, System::String ^ replyAction);
public ClientOperation (System.ServiceModel.Dispatcher.ClientRuntime parent, string name, string action, string replyAction);
new System.ServiceModel.Dispatcher.ClientOperation : System.ServiceModel.Dispatcher.ClientRuntime * string * string * string -> System.ServiceModel.Dispatcher.ClientOperation
Public Sub New (parent As ClientRuntime, name As String, action As String, replyAction As String)
Parameters
- parent
- ClientRuntime
The containing ClientRuntime object.
- name
- String
The name of the operation.
- action
- String
The action of the operation.
- replyAction
- String
The action of the reply message.