OAuthTokenEndpointContext.AdditionalResponseParameters Property
Enables additional values to be appended to the token response.
Namespace: Microsoft.Owin.Security.OAuth
Assembly: Microsoft.Owin.Security.OAuth (in Microsoft.Owin.Security.OAuth.dll)
Syntax
public IDictionary<string, object> AdditionalResponseParameters { get; private set; }
public:
property IDictionary<String^, Object^>^ AdditionalResponseParameters {
IDictionary<String^, Object^>^ get();
private: void set(IDictionary<String^, Object^>^ value);
}
member AdditionalResponseParameters : IDictionary<string, Object> with get, private set
Public Property AdditionalResponseParameters As IDictionary(Of String, Object)
Get
Private Set
End Property
Property Value
Type: System.Collections.Generic.IDictionary<String, Object>
Returns IDictionary<TKey, TValue>.
See Also
OAuthTokenEndpointContext Class
Microsoft.Owin.Security.OAuth Namespace
Return to top