Method for Renew 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.Renew(message)

Syntax

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