ScopedMessagePartSpecification.TryGetParts 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
检查是否存在与给定操作键匹配的部分。
重载
TryGetParts(String, MessagePartSpecification) |
检查是否存在与给定操作键匹配的部分。 |
TryGetParts(String, Boolean, MessagePartSpecification) |
检查是否存在与给定操作键匹配的部分。 |
TryGetParts(String, MessagePartSpecification)
检查是否存在与给定操作键匹配的部分。
public:
bool TryGetParts(System::String ^ action, [Runtime::InteropServices::Out] System::ServiceModel::Security::MessagePartSpecification ^ % parts);
public bool TryGetParts (string action, out System.ServiceModel.Security.MessagePartSpecification parts);
member this.TryGetParts : string * MessagePartSpecification -> bool
Public Function TryGetParts (action As String, ByRef parts As MessagePartSpecification) As Boolean
参数
- action
- String
操作键。
- parts
- MessagePartSpecification
此方法返回时,将包含一个包含已找到部分的 MessagePartSpecification。 此参数未经初始化即被传递。
返回
如果找到了匹配部分,则为 true
;否则为 false
。
注解
如果给定操作不在 ScopedMessagePartSpecification 中,则将返回配置为通配符操作 ("*") 的消息部分。
适用于
TryGetParts(String, Boolean, MessagePartSpecification)
检查是否存在与给定操作键匹配的部分。
public:
bool TryGetParts(System::String ^ action, bool excludeChannelScope, [Runtime::InteropServices::Out] System::ServiceModel::Security::MessagePartSpecification ^ % parts);
public bool TryGetParts (string action, bool excludeChannelScope, out System.ServiceModel.Security.MessagePartSpecification parts);
member this.TryGetParts : string * bool * MessagePartSpecification -> bool
Public Function TryGetParts (action As String, excludeChannelScope As Boolean, ByRef parts As MessagePartSpecification) As Boolean
参数
- action
- String
操作键。
- excludeChannelScope
- Boolean
如果为 true
,将限制当前通道的部分。
- parts
- MessagePartSpecification
此方法返回时,将包含一个包含已找到部分的 MessagePartSpecification。 此参数未经初始化即被传递。
返回
如果找到了匹配部分,则为 true
;否则为 false
。
注解
如果给定操作不在 ScopedMessagePartSpecification 中,则将返回配置为通配符操作 ("*") 的消息部分。