C# Класс Yea.Reflection.Emit.DefaultPropertyBuilder

Helper class for defining default properties
Наследование: Yea.Reflection.Emit.BaseClasses.VariableBase, IPropertyBuilder
Показать файл Открыть проект Примеры использования класса

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

Метод Описание
DefaultPropertyBuilder ( TypeBuilder typeBuilder, string name, PropertyAttributes attributes, MethodAttributes getMethodAttributes, MethodAttributes setMethodAttributes, Type propertyType, IEnumerable parameters ) : System

Constructor

GetDefinition ( ) : string

Gets the definition of the property

Load ( ILGenerator generator ) : void

Loads the property

Save ( ILGenerator generator ) : void

Saves the property

ToString ( ) : string

property as a string

operator ( ) : DefaultPropertyBuilder

Increments the property by one

Описание методов

DefaultPropertyBuilder() публичный Метод

Constructor
public DefaultPropertyBuilder ( TypeBuilder typeBuilder, string name, PropertyAttributes attributes, MethodAttributes getMethodAttributes, MethodAttributes setMethodAttributes, Type propertyType, IEnumerable parameters ) : System
typeBuilder TypeBuilder Type builder
name string Name of the property
attributes PropertyAttributes Attributes for the property (public, private, etc.)
getMethodAttributes MethodAttributes Get method attributes
setMethodAttributes MethodAttributes Set method attributes
propertyType System.Type Property type for the property
parameters IEnumerable Parameter types for the property
Результат System

GetDefinition() публичный Метод

Gets the definition of the property
public GetDefinition ( ) : string
Результат string

Load() публичный Метод

Loads the property
public Load ( ILGenerator generator ) : void
generator System.Reflection.Emit.ILGenerator IL Generator
Результат void

Save() публичный Метод

Saves the property
public Save ( ILGenerator generator ) : void
generator System.Reflection.Emit.ILGenerator IL Generator
Результат void

ToString() публичный Метод

property as a string
public ToString ( ) : string
Результат string

operator() публичный статический Метод

Increments the property by one
public static operator ( ) : DefaultPropertyBuilder
Результат DefaultPropertyBuilder