C# Class Com.Aote.ObjectTools.CustomType

自定义类型,包含一个基础类型,即对象自身的class类型,一些常用的内容都直接调用这个基础类型的方法 完成,只是在获取属性等方面才做自己的实现过程。
Inheritance: System.Type
Afficher le fichier Open project: DuBin1988/restv2 Class Usage Examples

Méthodes publiques

Свойство Type Description
_customProperties List

Méthodes publiques

Méthode Description
AddProperty ( string name ) : void

增加一个属性,类型为string

AddProperty ( string name, Type propertyType ) : void

增加一个属性,类型为给的值

AddProperty ( string name, Type propertyType, List attributes ) : void

增加一个属性,除名称及类型外,还有声明,不太常用

CustomType ( Type delegatingType ) : System

用基础类型构造用户类型。

GetConstructors ( BindingFlags bindingAttr ) : System.Reflection.ConstructorInfo[]
GetCustomAttributes ( Type attributeType, bool inherit ) : object[]
GetCustomAttributes ( bool inherit ) : object[]
GetElementType ( ) : Type
GetEvent ( string name, BindingFlags bindingAttr ) : EventInfo
GetEvents ( BindingFlags bindingAttr ) : System.Reflection.EventInfo[]
GetField ( string name, BindingFlags bindingAttr ) : FieldInfo
GetFields ( BindingFlags bindingAttr ) : System.Reflection.FieldInfo[]
GetInterface ( string name, bool ignoreCase ) : Type
GetInterfaces ( ) : System.Type[]
GetMembers ( BindingFlags bindingAttr ) : System.Reflection.MemberInfo[]
GetMethods ( BindingFlags bindingAttr ) : System.Reflection.MethodInfo[]
GetNestedType ( string name, BindingFlags bindingAttr ) : Type
GetNestedTypes ( BindingFlags bindingAttr ) : System.Type[]
GetProperties ( BindingFlags bindingAttr ) : System.Reflection.PropertyInfo[]

获得所有属性信息,包括clr属性以及自定义属性。

InvokeMember ( string name, BindingFlags invokeAttr, Binder binder, object target, object args, ParameterModifier modifiers, System culture, string namedParameters ) : object
IsDefined ( Type attributeType, bool inherit ) : bool

Méthodes protégées

Méthode Description
GetAttributeFlagsImpl ( ) : TypeAttributes
GetConstructorImpl ( BindingFlags bindingAttr, Binder binder, CallingConventions callConvention, Type types, ParameterModifier modifiers ) : ConstructorInfo
GetMethodImpl ( string name, BindingFlags bindingAttr, Binder binder, CallingConventions callConvention, Type types, ParameterModifier modifiers ) : MethodInfo
GetPropertyImpl ( string name, BindingFlags bindingAttr, Binder binder, Type returnType, Type types, ParameterModifier modifiers ) : PropertyInfo

实际获取某个属性的属性信息的实现过程。

HasElementTypeImpl ( ) : bool
IsArrayImpl ( ) : bool
IsByRefImpl ( ) : bool
IsCOMObjectImpl ( ) : bool
IsPointerImpl ( ) : bool
IsPrimitiveImpl ( ) : bool

Private Methods

Méthode Description
CheckIfNameExists ( string name ) : bool

检查属性是否存在,以避免重复添加属性。如果属性已经存在,将抛出属性名存在异常。

Method Details

AddProperty() public méthode

增加一个属性,类型为string
public AddProperty ( string name ) : void
name string 属性名
Résultat void

AddProperty() public méthode

增加一个属性,类型为给的值
public AddProperty ( string name, Type propertyType ) : void
name string 属性名
propertyType System.Type 属性类型
Résultat void

AddProperty() public méthode

增加一个属性,除名称及类型外,还有声明,不太常用
public AddProperty ( string name, Type propertyType, List attributes ) : void
name string 属性名
propertyType System.Type 属性类型
attributes List 声明
Résultat void

CustomType() public méthode

用基础类型构造用户类型。
public CustomType ( Type delegatingType ) : System
delegatingType System.Type 基础类型
Résultat System

GetAttributeFlagsImpl() protected méthode

protected GetAttributeFlagsImpl ( ) : TypeAttributes
Résultat TypeAttributes

GetConstructorImpl() protected méthode

protected GetConstructorImpl ( BindingFlags bindingAttr, Binder binder, CallingConventions callConvention, Type types, ParameterModifier modifiers ) : ConstructorInfo
bindingAttr BindingFlags
binder System.Reflection.Binder
callConvention CallingConventions
types System.Type
modifiers System.Reflection.ParameterModifier
Résultat System.Reflection.ConstructorInfo

GetConstructors() public méthode

public GetConstructors ( BindingFlags bindingAttr ) : System.Reflection.ConstructorInfo[]
bindingAttr BindingFlags
Résultat System.Reflection.ConstructorInfo[]

GetCustomAttributes() public méthode

public GetCustomAttributes ( Type attributeType, bool inherit ) : object[]
attributeType System.Type
inherit bool
Résultat object[]

GetCustomAttributes() public méthode

public GetCustomAttributes ( bool inherit ) : object[]
inherit bool
Résultat object[]

GetElementType() public méthode

public GetElementType ( ) : Type
Résultat System.Type

GetEvent() public méthode

public GetEvent ( string name, BindingFlags bindingAttr ) : EventInfo
name string
bindingAttr BindingFlags
Résultat System.Reflection.EventInfo

GetEvents() public méthode

public GetEvents ( BindingFlags bindingAttr ) : System.Reflection.EventInfo[]
bindingAttr BindingFlags
Résultat System.Reflection.EventInfo[]

GetField() public méthode

public GetField ( string name, BindingFlags bindingAttr ) : FieldInfo
name string
bindingAttr BindingFlags
Résultat System.Reflection.FieldInfo

GetFields() public méthode

public GetFields ( BindingFlags bindingAttr ) : System.Reflection.FieldInfo[]
bindingAttr BindingFlags
Résultat System.Reflection.FieldInfo[]

GetInterface() public méthode

public GetInterface ( string name, bool ignoreCase ) : Type
name string
ignoreCase bool
Résultat System.Type

GetInterfaces() public méthode

public GetInterfaces ( ) : System.Type[]
Résultat System.Type[]

GetMembers() public méthode

public GetMembers ( BindingFlags bindingAttr ) : System.Reflection.MemberInfo[]
bindingAttr BindingFlags
Résultat System.Reflection.MemberInfo[]

GetMethodImpl() protected méthode

protected GetMethodImpl ( string name, BindingFlags bindingAttr, Binder binder, CallingConventions callConvention, Type types, ParameterModifier modifiers ) : MethodInfo
name string
bindingAttr BindingFlags
binder System.Reflection.Binder
callConvention CallingConventions
types System.Type
modifiers System.Reflection.ParameterModifier
Résultat System.Reflection.MethodInfo

GetMethods() public méthode

public GetMethods ( BindingFlags bindingAttr ) : System.Reflection.MethodInfo[]
bindingAttr BindingFlags
Résultat System.Reflection.MethodInfo[]

GetNestedType() public méthode

public GetNestedType ( string name, BindingFlags bindingAttr ) : Type
name string
bindingAttr BindingFlags
Résultat System.Type

GetNestedTypes() public méthode

public GetNestedTypes ( BindingFlags bindingAttr ) : System.Type[]
bindingAttr BindingFlags
Résultat System.Type[]

GetProperties() public méthode

获得所有属性信息,包括clr属性以及自定义属性。
public GetProperties ( BindingFlags bindingAttr ) : System.Reflection.PropertyInfo[]
bindingAttr BindingFlags 未知
Résultat System.Reflection.PropertyInfo[]

GetPropertyImpl() protected méthode

实际获取某个属性的属性信息的实现过程。
protected GetPropertyImpl ( string name, BindingFlags bindingAttr, Binder binder, Type returnType, Type types, ParameterModifier modifiers ) : PropertyInfo
name string 属性名
bindingAttr BindingFlags 未知
binder System.Reflection.Binder 未知
returnType System.Type 未知
types System.Type 未知
modifiers System.Reflection.ParameterModifier 未知
Résultat System.Reflection.PropertyInfo

HasElementTypeImpl() protected méthode

protected HasElementTypeImpl ( ) : bool
Résultat bool

InvokeMember() public méthode

public InvokeMember ( string name, BindingFlags invokeAttr, Binder binder, object target, object args, ParameterModifier modifiers, System culture, string namedParameters ) : object
name string
invokeAttr BindingFlags
binder System.Reflection.Binder
target object
args object
modifiers System.Reflection.ParameterModifier
culture System
namedParameters string
Résultat object

IsArrayImpl() protected méthode

protected IsArrayImpl ( ) : bool
Résultat bool

IsByRefImpl() protected méthode

protected IsByRefImpl ( ) : bool
Résultat bool

IsCOMObjectImpl() protected méthode

protected IsCOMObjectImpl ( ) : bool
Résultat bool

IsDefined() public méthode

public IsDefined ( Type attributeType, bool inherit ) : bool
attributeType System.Type
inherit bool
Résultat bool

IsPointerImpl() protected méthode

protected IsPointerImpl ( ) : bool
Résultat bool

IsPrimitiveImpl() protected méthode

protected IsPrimitiveImpl ( ) : bool
Résultat bool

Property Details

_customProperties public_oe property

保存类型的属性信息,属性信息实现了PropertyInfo,可以当做正常的PropertyInfo使用。
public List _customProperties
Résultat List