DispatchOperation 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
初始化 DispatchOperation 类的新实例。
重载
DispatchOperation(DispatchRuntime, String, String) |
使用指定的调用运行时、名称以及操作值初始化 DispatchOperation 类的新实例。 |
DispatchOperation(DispatchRuntime, String, String, String) |
使用指定的调用运行时、名称、操作以及回复操作值初始化 DispatchOperation 类的新实例。 |
DispatchOperation(DispatchRuntime, String, String)
- Source:
- DispatchOperation.cs
- Source:
- DispatchOperation.cs
- Source:
- DispatchOperation.cs
使用指定的调用运行时、名称以及操作值初始化 DispatchOperation 类的新实例。
public:
DispatchOperation(System::ServiceModel::Dispatcher::DispatchRuntime ^ parent, System::String ^ name, System::String ^ action);
public DispatchOperation (System.ServiceModel.Dispatcher.DispatchRuntime parent, string name, string action);
new System.ServiceModel.Dispatcher.DispatchOperation : System.ServiceModel.Dispatcher.DispatchRuntime * string * string -> System.ServiceModel.Dispatcher.DispatchOperation
Public Sub New (parent As DispatchRuntime, name As String, action As String)
参数
- parent
- DispatchRuntime
关联的 DispatchRuntime 对象。
- name
- String
调度操作的名称。 该名称可以用作 Operations 集合的键。
- action
- String
正在为其创建调度操作的消息操作。
注解
对遵循单向模式的服务操作使用此构造函数。
适用于
DispatchOperation(DispatchRuntime, String, String, String)
- Source:
- DispatchOperation.cs
- Source:
- DispatchOperation.cs
- Source:
- DispatchOperation.cs
使用指定的调用运行时、名称、操作以及回复操作值初始化 DispatchOperation 类的新实例。
public:
DispatchOperation(System::ServiceModel::Dispatcher::DispatchRuntime ^ parent, System::String ^ name, System::String ^ action, System::String ^ replyAction);
public DispatchOperation (System.ServiceModel.Dispatcher.DispatchRuntime parent, string name, string action, string replyAction);
new System.ServiceModel.Dispatcher.DispatchOperation : System.ServiceModel.Dispatcher.DispatchRuntime * string * string * string -> System.ServiceModel.Dispatcher.DispatchOperation
Public Sub New (parent As DispatchRuntime, name As String, action As String, replyAction As String)
参数
- parent
- DispatchRuntime
关联的 DispatchRuntime 对象。
- name
- String
调度操作的名称。
- action
- String
正在为其创建调度操作的 SOAP 消息操作。
- replyAction
- String
与此调度操作关联的回复操作。
注解
对于遵循请求-回复模式的服务操作,使用此构造函数。