C# Class CSE.Exps.MethResSettings

Used in overloaded and overwritten method resolution
Show file Open project: kcherr1/CSharp-Eval Class Usage Examples

Public Properties

Property Type Description
Args CSE.Exps.CseObject[]
Env object
IsExtInvocation bool
Name string

Public Methods

Method Description
MethResSettings ( object env, string name, CseObject args, bool isExtInvocation )

Constructor for MethResSettings objects

Method Details

MethResSettings() public method

Constructor for MethResSettings objects
public MethResSettings ( object env, string name, CseObject args, bool isExtInvocation )
env object The environment to use
name string The name of the method
args CseObject Arguments to pass to the method
isExtInvocation bool True if this is an extended invocation, false otherwise

Property Details

Args public property

The list of arguments for the method
public CseObject[],CSE.Exps Args
return CSE.Exps.CseObject[]

Env public property

The parent environment in which this object exists
public object Env
return object

IsExtInvocation public property

Whether or not this is an extended invocation
public bool IsExtInvocation
return bool

Name public property

The name of this particular method
public string Name
return string