AspNetRequestScopeStorageProvider.GlobalScope Property
Gets the dictionary to store data in the global scope.
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 AspNetRequestScopeStorageProvider
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 stores global scope data.
Implements
IScopeStorageProvider.GlobalScope