C# Class Cedar.Framework.Caching.Interception.Configuration.CachingCallHandlerData

Inheritance: Microsoft.Practices.EnterpriseLibrary.Common.Configuration.CallHandlerData
Exibir arquivo Open project: Chinaccn/surfboard

Private Properties

Property Type Description

Public Methods

Method Description
CachingCallHandlerData ( ) : System

Create a new T:Cedar.Framework.Caching.Interception.Configuration.CachingCallHandlerData instance.

CachingCallHandlerData ( string handlerName ) : System

Create a new T:Cedar.Framework.Caching.Interception.Configuration.CachingCallHandlerData instance with the given name.

CachingCallHandlerData ( string handlerName, int handlerOrder ) : System

Create a new T:Cedar.Framework.Caching.Interception.Configuration.CachingCallHandlerData instance with the given name.

Protected Methods

Method Description
DoConfigureContainer ( IUnityContainer container, string registrationName ) : void

Configures an T:Microsoft.Practices.Unity.IUnityContainer to resolve the represented call handler by using the specified name.

Method Details

CachingCallHandlerData() public method

Create a new T:Cedar.Framework.Caching.Interception.Configuration.CachingCallHandlerData instance.
public CachingCallHandlerData ( ) : System
return System

CachingCallHandlerData() public method

Create a new T:Cedar.Framework.Caching.Interception.Configuration.CachingCallHandlerData instance with the given name.
public CachingCallHandlerData ( string handlerName ) : System
handlerName string Name of handler to store in config file.
return System

CachingCallHandlerData() public method

Create a new T:Cedar.Framework.Caching.Interception.Configuration.CachingCallHandlerData instance with the given name.
public CachingCallHandlerData ( string handlerName, int handlerOrder ) : System
handlerName string Name of handler to store in config file.
handlerOrder int Order of handler to store in config file.
return System

DoConfigureContainer() protected method

Configures an T:Microsoft.Practices.Unity.IUnityContainer to resolve the represented call handler by using the specified name.
protected DoConfigureContainer ( IUnityContainer container, string registrationName ) : void
container IUnityContainer The container to configure.
registrationName string The name of the registration.
return void