C# Класс Felinesoft.UmbracoCodeFirst.Core.Modules.DataTypeRegister.DataTypeRegisterController

Показать файл Открыть проект

Открытые методы

Метод Описание
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