메소드 | 설명 | |
---|---|---|
Clear ( ) : void |
Clears the context variables
|
|
Contains ( string key ) : bool |
Checks if a variable is set within the context
|
|
Get ( string key ) : object |
Gets the value of a variable within the context
|
|
Remove ( string key ) : void |
Removes a variable from the context by key
|
|
Set ( string key, object value ) : void |
Sets the value of a new or existing variable within the context
|
public Contains ( string key ) : bool | ||
key | string | The key of the variable to check for |
리턴 | bool |
public Remove ( string key ) : void | ||
key | string | The key of the variable to remove |
리턴 | void |
public Set ( string key, object value ) : void | ||
key | string | The key of the variable that is to be added |
value | object | The value to add |
리턴 | void |