AuthInfo Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
AuthInfo() |
Initializes a new instance of the AuthInfo class. |
AuthInfo(String, String, String, String, Nullable<Int32>) |
Initializes a new instance of the AuthInfo class. |
AuthInfo()
Initializes a new instance of the AuthInfo class.
public AuthInfo ();
Public Sub New ()
Applies to
AuthInfo(String, String, String, String, Nullable<Int32>)
Initializes a new instance of the AuthInfo class.
public AuthInfo (string tokenType, string token, string refreshToken = default, string scope = default, int? expiresIn = default);
new Microsoft.Azure.Management.ContainerRegistry.Fluent.Models.AuthInfo : string * string * string * string * Nullable<int> -> Microsoft.Azure.Management.ContainerRegistry.Fluent.Models.AuthInfo
Public Sub New (tokenType As String, token As String, Optional refreshToken As String = Nothing, Optional scope As String = Nothing, Optional expiresIn As Nullable(Of Integer) = Nothing)
Parameters
- tokenType
- String
The type of Auth token. Possible values include: 'PAT', 'OAuth'
- token
- String
The access token used to access the source control provider.
- refreshToken
- String
The refresh token used to refresh the access token.
- scope
- String
The scope of the access token.