Interface IHttpPostForm
Creates the HTML form that's used with the HTTP Post binding to send a SAML message.
Namespace: ComponentSpace.Saml2.Bindings.Post
Assembly: ComponentSpace.Saml2.dll
Syntax
public interface IHttpPostForm
Methods
Create(String, String, String, String, String)
Creates the HTTP Post form content used to send the SAML message.
Declaration
HttpPostFormContent Create(string url, string messageFormVariableName, string messageFormVariableValue, string relayStateFormVariableName = null, string relayStateFormVariableValue = null)
Parameters
Type | Name | Description |
---|---|---|
System.String | url | The URL to receive the SAML message. |
System.String | messageFormVariableName | The SAML message form variable name. |
System.String | messageFormVariableValue | The SAML message form variable value. |
System.String | relayStateFormVariableName | The relay state form variable name or |
System.String | relayStateFormVariableValue | The relay state form variable value or |
Returns
Type | Description |
---|---|
HttpPostFormContent | The HTTP Post form content. |