C# Class AjScript.Context

Inheritance: IContext
Mostrar archivo Open project: ajlopez/AjScript Class Usage Examples

Public Methods

Method Description
Context ( ) : System
Context ( IContext parent ) : System
DefineVariable ( string name ) : void
GetNames ( ) : ICollection
GetValue ( string name ) : object
RemoveValue ( string name ) : void
SetValue ( string name, object value ) : void

Method Details

Context() public method

public Context ( ) : System
return System

Context() public method

public Context ( IContext parent ) : System
parent IContext
return System

DefineVariable() public method

public DefineVariable ( string name ) : void
name string
return void

GetNames() public method

public GetNames ( ) : ICollection
return ICollection

GetValue() public method

public GetValue ( string name ) : object
name string
return object

RemoveValue() public method

public RemoveValue ( string name ) : void
name string
return void

SetValue() public method

public SetValue ( string name, object value ) : void
name string
value object
return void