Table of Contents

Interface IGenericExtension

Namespace
CMS.Base
Assembly
CMS.Base.dll

Interface for the generic extension

public interface IGenericExtension
Extension Methods

Properties

ParentExtension

Parent extension. If set, provides instance object to current extension

IGenericExtension ParentExtension { get; set; }

Property Value

IGenericExtension

Methods

GetInstance()

Returns the extension object instance

object GetInstance()

Returns

object

NewGenericProperty(object)

Creates a new property inferred from this extension

IGenericProperty NewGenericProperty(object obj)

Parameters

obj object

Returns

IGenericProperty

RegisterAsExtensionTo(Type)

Registers the extension as an extension to the given type

void RegisterAsExtensionTo(Type type)

Parameters

type Type

Target type

RegisterAsPropertyTo(Type, string)

Registers the extension as a property to the given type

void RegisterAsPropertyTo(Type type, string propertyName)

Parameters

type Type

Target type

propertyName string

Property name

SetInstance(object)

Sets the extension object instance

void SetInstance(object value)

Parameters

value object

New instance value