Click or drag to resize

OIDCCallback Delegate

Signature for a method which can handle phase one of an OpenID authentication flow

Namespace:  Couchbase.Lite.Auth
Assembly:  Couchbase.Lite (in Couchbase.Lite.dll) Version: 1.4.1-b107
Syntax
C#
public delegate void OIDCCallback(
	Uri loginUrl,
	Uri authBaseUrl,
	OIDCLoginContinuation continuation
)

Parameters

loginUrl
Type: SystemUri
The sync gateway (or other endpoint) login URL
authBaseUrl
Type: SystemUri
The base URL of the authentication server
continuation
Type: Couchbase.Lite.AuthOIDCLoginContinuation
A callback for phase two
See Also