CloudIdentityProviderValidateToken Method |
Validates a given token.
Namespace: net.openstack.Providers.RackspaceAssembly: openstacknet (in openstacknet.dll) Version: 1.7.7+Branch.master.Sha.25d803f397c8693c2c13777ef6675f796f520f2c
Syntax public virtual UserAccess ValidateToken(
string token,
string tenantId = null,
CloudIdentity identity = null
)
Public Overridable Function ValidateToken (
token As String,
Optional tenantId As String = Nothing,
Optional identity As CloudIdentity = Nothing
) As UserAccess
public:
virtual UserAccess^ ValidateToken(
String^ token,
String^ tenantId = nullptr,
CloudIdentity^ identity = nullptr
)
abstract ValidateToken :
token : string *
?tenantId : string *
?identity : CloudIdentity
(* Defaults:
let _tenantId = defaultArg tenantId null
let _identity = defaultArg identity null
*)
-> UserAccess
override ValidateToken :
token : string *
?tenantId : string *
?identity : CloudIdentity
(* Defaults:
let _tenantId = defaultArg tenantId null
let _identity = defaultArg identity null
*)
-> UserAccess
Parameters
- token
- Type: SystemString
The token to be validated. - tenantId (Optional)
- Type: SystemString
If specified, the validation ensures that the specified tenant is in scope. This is obtained from Id. - identity (Optional)
- Type: net.openstack.Core.DomainCloudIdentity
The cloud identity to use for this request. If not specified, the default identity for the current provider instance will be used.
Return Value
Type:
UserAccessA
UserAccess object containing the authentication token and user data. The
ServiceCatalog property of the result may be
.
Implements
IIdentityProviderValidateToken(String, String, CloudIdentity)Exceptions Version Information .NET Framework
Supported in: 4.5
openstack.net
Supported in: 1.6, 1.5, 1.4, 1.3.6
See Also