C# 클래스 Felinesoft.UmbracoCodeFirst.Core.Modules.DataTypeRegister.DataTypeRegisterController

파일 보기 프로젝트 열기: DanMannMann/UmbracoCodeFirst

공개 메소드들

메소드 설명
Register ( PropertyInfo instance, DataTypeRegistration definition ) : void

Registers the given data type definition for the specified property instance

Register ( Type dataType, DataTypeRegistration definition ) : void

Registers the given data type definition for the specified type

비공개 메소드들

메소드 설명
DataTypeRegisterController ( DataTypeRegister instance ) : System

메소드 상세

Register() 공개 메소드

Registers the given data type definition for the specified property instance
Thrown if the specified instance is already registered. /// This operation is not thread safe. If Register may be called from multiple threads in your application /// then you are responsible for synchronising those calls.
public Register ( PropertyInfo instance, DataTypeRegistration definition ) : void
instance System.Reflection.PropertyInfo
definition DataTypeRegistration
리턴 void

Register() 공개 메소드

Registers the given data type definition for the specified type
Thrown if the specified type is already registered. /// This operation is not thread safe. If Register may be called from multiple threads in your application /// then you are responsible for synchronising those calls.
public Register ( Type dataType, DataTypeRegistration definition ) : void
dataType System.Type
definition DataTypeRegistration
리턴 void