ScopeStorage.CurrentScope Property
Gets the dictionary that is used to store data in the current scope.
Namespace: System.Web.WebPages.Scope
Assembly: System.Web.WebPages (in System.Web.WebPages.dll)
Syntax
'Declaration
Public Shared ReadOnly Property CurrentScope As IDictionary(Of Object, Object)
Get
'Usage
Dim value As IDictionary(Of Object, Object)
value = ScopeStorage.CurrentScope
public static IDictionary<Object, Object> CurrentScope { get; }
public:
static property IDictionary<Object^, Object^>^ CurrentScope {
IDictionary<Object^, Object^>^ get ();
}
static member CurrentScope : IDictionary<Object, Object>
static function get CurrentScope () : IDictionary<Object, Object>
Property Value
Type: System.Collections.Generic.IDictionary<Object, Object>
The dictionary that stores current scope data.