AspNetRequestScopeStorageProvider.ApplicationScope Property
Gets the dictionary to store data in the application scope.
Namespace: System.Web.WebPages.Scope
Assembly: System.Web.WebPages (in System.Web.WebPages.dll)
Syntax
'Declaration
Public Property ApplicationScope As IDictionary(Of Object, Object)
Get
Private Set
'Usage
Dim instance As AspNetRequestScopeStorageProvider
Dim value As IDictionary(Of Object, Object)
value = instance.ApplicationScope
public IDictionary<Object, Object> ApplicationScope { get; private set; }
public:
property IDictionary<Object^, Object^>^ ApplicationScope {
IDictionary<Object^, Object^>^ get ();
private: void set (IDictionary<Object^, Object^>^ value);
}
member ApplicationScope : IDictionary<Object, Object> with get, private set
function get ApplicationScope () : IDictionary<Object, Object>
private function set ApplicationScope (value : IDictionary<Object, Object>)
Property Value
Type: System.Collections.Generic.IDictionary<Object, Object>
The dictionary that stores application scope data.