C# Class Candor.Security.SecurityContextProvider

The base contract that must be fullfilled by any SecurityContext provider.
Inheritance: System.Configuration.Provider.ProviderBase
Show file Open project: michael-lang/candor-common

Public Methods

Method Description
Initialize ( string name, NameValueCollection configValue ) : void

Initializes the provider with the specified values.

SecurityContextProvider ( ) : System.Collections.Specialized

Creates a new instance.

SecurityContextProvider ( string name ) : System.Collections.Specialized

Creates a new instance with a specific name.

Private Methods

Method Description
InitializeInternal ( string name, NameValueCollection configValue ) : void

Method Details

Initialize() public method

Initializes the provider with the specified values.
public Initialize ( string name, NameValueCollection configValue ) : void
name string The name of the provider.
configValue System.Collections.Specialized.NameValueCollection Provider specific attributes.
return void

SecurityContextProvider() public method

Creates a new instance.
public SecurityContextProvider ( ) : System.Collections.Specialized
return System.Collections.Specialized

SecurityContextProvider() public method

Creates a new instance with a specific name.
public SecurityContextProvider ( string name ) : System.Collections.Specialized
name string
return System.Collections.Specialized