Table of Contents

Class ProviderInterfaceAttribute

Namespace
CMS.DataEngine
Assembly
CMS.DataEngine.dll

Attribute specifying a custom provider interface to be associated with an implementation of AbstractInfoProvider<TInfo, TProvider>.

The system registers the info provider implementation under the IInfoProvider<TInfo> interface into the IoC container as part of the RegisterObjectType(string, ObjectTypeInfo, Type, bool, bool) method.

Declare a custom provider interface whenever the default IInfoProvider<TInfo> interface does not suit the provider needs. The system registers the info provider under the custom interface as well.

[AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = false)]
public sealed class ProviderInterfaceAttribute : Attribute
Inheritance
object
Attribute
ProviderInterfaceAttribute
Extension Methods

Remarks

When declaring a custom provider interface, IInfoProvider<TInfo>, IInfoByIdProvider<TInfo>, IInfoByGuidProvider<TInfo> or IInfoByNameProvider<TInfo> can be used along with other custom members.

Constructors

ProviderInterfaceAttribute(Type)

Initializes a new instance of the ProviderInterfaceAttribute class using the providerInterface given.

public ProviderInterfaceAttribute(Type providerInterface)

Parameters

providerInterface Type

Provider interface to be associated with provider implementation.

Properties

ProviderInterface

Gets the provider interface to be associated with provider implementation.

public Type ProviderInterface { get; }

Property Value

Type