C# Класс Microsoft.Scripting.ScopeVariable

Boxes the value for storage in a scope. Languages or consumers of the scope can save this value and use it to get/set the current value in the scope for commonly accessed values. ScopeVariables are case sensitive and will only refer to a single value.
Наследование: IScopeVariable, IWeakReferencable
Показать файл Открыть проект Примеры использования класса

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

Метод Описание
DeleteValue ( ) : bool

Removes the current value from the scope.

SetValue ( object value ) : void

Sets the current value in the scope.

TryGetValue ( Object &value ) : bool

Atempts to get the value. If a value is assigned it returns true otherwise it returns false.

Приватные методы

Метод Описание
ScopeVariable ( ) : Microsoft.Scripting.Ast

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

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

Removes the current value from the scope.
public DeleteValue ( ) : bool
Результат bool

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

Sets the current value in the scope.
public SetValue ( object value ) : void
value object
Результат void

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

Atempts to get the value. If a value is assigned it returns true otherwise it returns false.
public TryGetValue ( Object &value ) : bool
value System.Object
Результат bool