C# Класс CSE.Exps.MethResObject

The internal representation of a method resolution object.
Показать файл Открыть проект Примеры использования класса

Открытые свойства

Свойство Тип Описание
Args dynamic[]
InvTypes System.Type[]
MethInfo System.Reflection.MethodInfo
OnlyAppInExpForm bool

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

Метод Описание
MethResObject ( MethodInfo methInfo, Type invTypes, dynamic args, bool onlyAppInExpForm = false ) : System

The constructor for creating a MethResObject.

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

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

The constructor for creating a MethResObject.
public MethResObject ( MethodInfo methInfo, Type invTypes, dynamic args, bool onlyAppInExpForm = false ) : System
methInfo System.Reflection.MethodInfo The method information to set.
invTypes System.Type unused. Send null
args dynamic The argument list to set up for the constructed method resolution object.
onlyAppInExpForm bool Whether or not the method resolution applies only in expanded form.
Результат System

Описание свойств

Args публичное свойство

The list of arguments for this method resolution.
public dynamic[] Args
Результат dynamic[]

InvTypes публичное свойство

InvTypes. Unused.
public Type[],System InvTypes
Результат System.Type[]

MethInfo публичное свойство

Method information object.
public MethodInfo,System.Reflection MethInfo
Результат System.Reflection.MethodInfo

OnlyAppInExpForm публичное свойство

If this method resolution should match only in "expanded form", as defined in the C# specification, this is marked true, otherwise false.
public bool OnlyAppInExpForm
Результат bool