Class NSAccessGatewayInfo
Access gateway related data and operations. Carrier object for AccessGatewayInfo.
Syntax
Constructors
NSAccessGatewayInfo()
Initializes a new instance of the NSAccessGatewayInfo class.
Declaration
NSAccessGatewayInfo
Methods
GetClientId()
Returns the registered client ID for AccessGateway OIDC.
Declaration
String GetClientId()
Returns
Type | Description |
---|---|
String | The registered client ID for AccessGateway OIDC. |
Examples
NSAccessGatewayInfo thing;
String clientId = thing.GetClientId();
GetRedirectUri()
Returns the registered redirect_uri for AccessGateway OIDC.
Declaration
String GetRedirectUri()
Returns
Type | Description |
---|---|
String | The registered redirect_uri for AccessGateway OIDC. |
Examples
NSAccessGatewayInfo thing;
String redirectUri = thing.GetRedirectUri();
SetClientId(String)
Sets the client ID for AccessGateway OIDC.
Declaration
Void SetClientId(String clientId)
Parameters
Type | Name | Description |
---|---|---|
String | clientId | Client ID for AccessGateway OIDC. |
Returns
Type | Description |
---|---|
Void |
Examples
NSAccessGatewayInfo thing;
String clientId;
thing.SetClientId(clientId);
SetRedirectUri(String)
Sets the redirect_uri for AccessGateway OIDC.
Declaration
Void SetRedirectUri(String redirectUri)
Parameters
Type | Name | Description |
---|---|---|
String | redirectUri | The redirect_uri for AccessGateway OIDC. |
Returns
Type | Description |
---|---|
Void |
Examples
NSAccessGatewayInfo thing;
String redirectUri;
thing.SetRedirectUri(redirectUri);