Share via


IScopeStorageProvider.CurrentScope Property

Gets and sets 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
Property CurrentScope As IDictionary(Of Object, Object)
    Get 
    Set
'Usage
Dim instance As IScopeStorageProvider 
Dim value As IDictionary(Of Object, Object)

value = instance.CurrentScope

instance.CurrentScope = value
IDictionary<Object, Object> CurrentScope { get; set; }
property IDictionary<Object^, Object^>^ CurrentScope {
    IDictionary<Object^, Object^>^ get ();
    void set (IDictionary<Object^, Object^>^ value);
}
abstract CurrentScope : IDictionary<Object, Object> with get, set
function get CurrentScope () : IDictionary<Object, Object>
function set CurrentScope (value : IDictionary<Object, Object>)

Property Value

Type: System.Collections.Generic.IDictionary<Object, Object>
The dictionary that stores current scope data.

See Also

Reference

IScopeStorageProvider Interface

System.Web.WebPages.Scope Namespace