Show / Hide Table of Contents

Class AbstractSAMLConfigurationResolver

An abstract implementation of the SAML configuration resolver.

Inheritance
System.Object
AbstractSAMLConfigurationResolver
SAMLConfigurationResolver
Implements
ISAMLConfigurationResolver
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: ComponentSpace.SAML2.Configuration.Resolver
Assembly: ComponentSpace.Saml2.dll
Syntax
public abstract class AbstractSAMLConfigurationResolver : ISAMLConfigurationResolver

Methods

GetLocalIdentityProviderConfiguration(String)

Gets the LocalIdentityProviderConfiguration.

Declaration
public virtual LocalIdentityProviderConfiguration GetLocalIdentityProviderConfiguration(string configurationName)
Parameters
Type Name Description
System.String configurationName

The configuration name or null if none.

Returns
Type Description
LocalIdentityProviderConfiguration

The local identity provider configuration.

Exceptions
Type Condition
SAMLException

Thrown when the local identity provider configuration cannot be found.

GetLocalServiceProviderConfiguration(String)

Gets the LocalServiceProviderConfiguration.

Declaration
public virtual LocalServiceProviderConfiguration GetLocalServiceProviderConfiguration(string configurationName)
Parameters
Type Name Description
System.String configurationName

The configuration name or null if none.

Returns
Type Description
LocalServiceProviderConfiguration

The local service provider configuration.

Exceptions
Type Condition
SAMLException

Thrown when the local service provider configuration cannot be found.

GetPartnerIdentityProviderConfiguration(String, String)

Gets the PartnerIdentityProviderConfiguration given the partner name.

Declaration
public virtual PartnerIdentityProviderConfiguration GetPartnerIdentityProviderConfiguration(string configurationName, string partnerName)
Parameters
Type Name Description
System.String configurationName

The configuration name or null if none.

System.String partnerName

The partner name.

Returns
Type Description
PartnerIdentityProviderConfiguration

The partner identity provider configuration.

Exceptions
Type Condition
SAMLException

Thrown when the partner identity provider configuration cannot be found.

GetPartnerIdentityProviderNames(String)

Gets the names of the partner identity providers.

Declaration
public virtual IList<string> GetPartnerIdentityProviderNames(string configurationName)
Parameters
Type Name Description
System.String configurationName

The configuration name or null if none.

Returns
Type Description
System.Collections.Generic.IList<System.String>

The names of the partner identity providers.

Exceptions
Type Condition
SAMLException

Thrown when the partner identity provider names cannot be retrieved.

GetPartnerServiceProviderConfiguration(String, String)

Gets the PartnerServiceProviderConfiguration given the partner name.

Declaration
public virtual PartnerServiceProviderConfiguration GetPartnerServiceProviderConfiguration(string configurationName, string partnerName)
Parameters
Type Name Description
System.String configurationName

The configuration name or null if none.

System.String partnerName

The partner name.

Returns
Type Description
PartnerServiceProviderConfiguration

The partner service provider configuration.

Exceptions
Type Condition
SAMLException

Thrown when the partner service provider configuration cannot be found.

GetPartnerServiceProviderNames(String)

Gets the names of the partner service providers.

Declaration
public virtual IList<string> GetPartnerServiceProviderNames(string configurationName)
Parameters
Type Name Description
System.String configurationName

The configuration name or null if none.

Returns
Type Description
System.Collections.Generic.IList<System.String>

The names of the partner service providers.

Exceptions
Type Condition
SAMLException

Thrown when the partner service provider names cannot be retrieved.

IsLocalIdentityProvider(String)

Indicates whether a local identity provider is configured.

Declaration
public virtual bool IsLocalIdentityProvider(string configurationName)
Parameters
Type Name Description
System.String configurationName

The configuration name or null if none.

Returns
Type Description
System.Boolean

true if a local identity provider is configured; otherwise false.

IsLocalServiceProvider(String)

Indicates whether a local service provider is configured.

Declaration
public virtual bool IsLocalServiceProvider(string configurationName)
Parameters
Type Name Description
System.String configurationName

The configuration name or null if none.

Returns
Type Description
System.Boolean

true if a local service provider is configured; otherwise false.

Implements

ISAMLConfigurationResolver
In This Article
Back to top Copyright © ComponentSpace Pty Ltd 2004-2022. All rights reserved.