SignedHttpRequestHandler.CreateSignedHttpRequest Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
CreateSignedHttpRequest(SignedHttpRequestDescriptor) |
Creates a signed http request using the |
CreateSignedHttpRequest(SignedHttpRequestDescriptor, CallContext) |
Creates a signed http request using the |
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.