Method for Validate binding for WS-Trust.
Namespace: Microsoft.IdentityModel.Protocols.WSTrust
Assembly: Microsoft.IdentityModel (in microsoft.identitymodel.dll)

Usage

Visual Basic
Dim instance As IWSTrustContract
Dim message As Message
Dim returnValue As Message

returnValue = instance.Validate(message)

Syntax

Visual Basic
<OperationContractAttribute(Name:="Validate", Action:="*", ReplyAction:="*")> _
Function Validate ( _
		message As Message _
) As Message
C#
[OperationContractAttribute(Name="Validate", Action="*", ReplyAction="*")] 
Message Validate (
		Message message
)
C++
[OperationContractAttribute(Name=L"Validate", Action=L"*", ReplyAction=L"*")] 
Message^ Validate (
		Message^ message
)
J#
/** @attribute OperationContractAttribute(Name="Validate", Action="*", ReplyAction="*") */ 
Message Validate (
		Message message
)
JScript
OperationContractAttribute(Name="Validate", Action="*", ReplyAction="*") 
function Validate (
		message : Message
) : Message

Parameters

message

The Request Message that contains a RST.

Return Value

Returns Message. This is the response message that contains the RSTR.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

Windows Server 2003, Windows Vista

Target Platforms

Windows Server 2008, Windows Vista, Not tested on Windows XP

See Also