StaticScopeStorageProvider.GlobalScope Property
Gets a dictionary that stores global data under a static context.
Namespace: System.Web.WebPages.Scope
Assembly: System.Web.WebPages (in System.Web.WebPages.dll)
Syntax
'Declaration
Public ReadOnly Property GlobalScope As IDictionary(Of Object, Object)
Get
'Usage
Dim instance As StaticScopeStorageProvider
Dim value As IDictionary(Of Object, Object)
value = instance.GlobalScope
public IDictionary<Object, Object> GlobalScope { get; }
public:
virtual property IDictionary<Object^, Object^>^ GlobalScope {
IDictionary<Object^, Object^>^ get () sealed;
}
abstract GlobalScope : IDictionary<Object, Object>
override GlobalScope : IDictionary<Object, Object>
final function get GlobalScope () : IDictionary<Object, Object>
Property Value
Type: System.Collections.Generic.IDictionary<Object, Object>
The dictionary that provides global scoped data.
Implements
IScopeStorageProvider.GlobalScope