AuthorizeEndpointRequest.Scope Property

The "scope" query string parameter of the Authorize request. May be absent if the server should use default scopes.

Namespace:  Microsoft.Owin.Security.OAuth.Messages
Assembly:  Microsoft.Owin.Security.OAuth (in Microsoft.Owin.Security.OAuth.dll)

Syntax

'Declaration
Public Property Scope As IList(Of String)
    Get 
    Private Set
'Usage
Dim instance As AuthorizeEndpointRequest 
Dim value As IList(Of String)

value = instance.Scope
public IList<string> Scope { get; private set; }
public:
property IList<String^>^ Scope {
    IList<String^>^ get ();
    private: void set (IList<String^>^ value);
}
member Scope : IList<string> with get, private set
function get Scope () : IList<String>
private function set Scope (value : IList<String>)

Property Value

Type: System.Collections.Generic.IList<String>

See Also

Reference

AuthorizeEndpointRequest Class

Microsoft.Owin.Security.OAuth.Messages Namespace