SignedHttpRequestHandler.CreateSignedHttpRequest Method

Definition

Overloads

CreateSignedHttpRequest(SignedHttpRequestDescriptor)

Creates a signed http request using the signedHttpRequestDescriptor.

CreateSignedHttpRequest(SignedHttpRequestDescriptor, CallContext)

Creates a signed http request using the signedHttpRequestDescriptor.

CreateSignedHttpRequest(SignedHttpRequestDescriptor)

Creates a signed http request using the signedHttpRequestDescriptor.

public string CreateSignedHttpRequest (Microsoft.IdentityModel.Protocols.SignedHttpRequest.SignedHttpRequestDescriptor signedHttpRequestDescriptor);
member this.CreateSignedHttpRequest : Microsoft.IdentityModel.Protocols.SignedHttpRequest.SignedHttpRequestDescriptor -> string
Public Function CreateSignedHttpRequest (signedHttpRequestDescriptor As SignedHttpRequestDescriptor) As String

Parameters

signedHttpRequestDescriptor
SignedHttpRequestDescriptor

A structure that wraps parameters needed for SignedHttpRequest creation.

Returns

A signed http request as a JWS in Compact Serialization Format.

Remarks

Default CallContext will be created.

Applies to

CreateSignedHttpRequest(SignedHttpRequestDescriptor, CallContext)

Creates a signed http request using the signedHttpRequestDescriptor.

public string CreateSignedHttpRequest (Microsoft.IdentityModel.Protocols.SignedHttpRequest.SignedHttpRequestDescriptor signedHttpRequestDescriptor, Microsoft.IdentityModel.Tokens.CallContext callContext);
member this.CreateSignedHttpRequest : Microsoft.IdentityModel.Protocols.SignedHttpRequest.SignedHttpRequestDescriptor * Microsoft.IdentityModel.Tokens.CallContext -> string
Public Function CreateSignedHttpRequest (signedHttpRequestDescriptor As SignedHttpRequestDescriptor, callContext As CallContext) As String

Parameters

signedHttpRequestDescriptor
SignedHttpRequestDescriptor

A structure that wraps parameters needed for SignedHttpRequest creation.

callContext
CallContext

An opaque context used to store work and logs when working with authentication artifacts.

Returns

A signed http request as a JWS in Compact Serialization Format.

Applies to