Class LocalProviderConfiguration
The local provider configuration is configuration common to local identity providers and service providers.
Inheritance
LocalProviderConfiguration
Inherited Members
Namespace: ComponentSpace.SAML2.Configuration
Assembly: ComponentSpace.Saml2.dll
Syntax
public abstract class LocalProviderConfiguration : ProviderConfiguration
Constructors
LocalProviderConfiguration()
Constructs a local provider configuration.
Declaration
public LocalProviderConfiguration()
LocalProviderConfiguration(XmlElement)
Constructs a local provider configuration from XML.
Declaration
public LocalProviderConfiguration(XmlElement xmlElement)
Parameters
Type | Name | Description |
---|---|---|
XmlElement | xmlElement | The local provider configuration XML. |
Properties
ResolveToHttps
Gets or sets the flag indicating whether local URLs should be resolved to HTTPS.
Declaration
public bool ResolveToHttps { get; set; }
Property Value
Type | Description |
---|---|
bool | The flag indicating whether local URLs should be resolved to HTTPS. |
SingleLogoutServiceUrl
Gets or sets the local provider's single logout service URL.
The single logout service URL is the endpoint at which the SAML logout messages received.
Declaration
public string SingleLogoutServiceUrl { get; set; }
Property Value
Type | Description |
---|---|
string | The local provider's single logout service URL. |
Methods
ToXml(XmlElement)
Serializes the local provider configuration to XML.
Declaration
public override void ToXml(XmlElement xmlElement)
Parameters
Type | Name | Description |
---|---|---|
XmlElement | xmlElement | The XML element. |