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