blob: 810dd1329810d15fb4d35a7d26006a6d7102453e [file] [log] [blame] [edit]
### YamlMime:ManagedReference
items:
- uid: OpenQA.Selenium.VirtualAuth.Credential
commentId: T:OpenQA.Selenium.VirtualAuth.Credential
id: Credential
parent: OpenQA.Selenium.VirtualAuth
children:
- OpenQA.Selenium.VirtualAuth.Credential.CreateNonResidentCredential(System.Byte[],System.String,System.String,System.Int32)
- OpenQA.Selenium.VirtualAuth.Credential.CreateResidentCredential(System.Byte[],System.String,System.String,System.Byte[],System.Int32)
- OpenQA.Selenium.VirtualAuth.Credential.FromDictionary(System.Collections.Generic.Dictionary{System.String,System.Object})
- OpenQA.Selenium.VirtualAuth.Credential.Id
- OpenQA.Selenium.VirtualAuth.Credential.IsResidentCredential
- OpenQA.Selenium.VirtualAuth.Credential.PrivateKey
- OpenQA.Selenium.VirtualAuth.Credential.RpId
- OpenQA.Selenium.VirtualAuth.Credential.SignCount
- OpenQA.Selenium.VirtualAuth.Credential.ToDictionary
- OpenQA.Selenium.VirtualAuth.Credential.UserHandle
langs:
- csharp
- vb
name: Credential
nameWithType: Credential
fullName: OpenQA.Selenium.VirtualAuth.Credential
type: Class
source:
remote:
path: dotnet/src/webdriver/VirtualAuth/Credential.cs
branch: trunk
repo: https://github.com/SeleniumHQ/selenium
id: Credential
path: ../src/webdriver/VirtualAuth/Credential.cs
startLine: 29
assemblies:
- WebDriver
namespace: OpenQA.Selenium.VirtualAuth
summary: >-
A credential stored in a virtual authenticator.
Refer <a href="https://w3c.github.io/webauthn/#credential-parameters">https://w3c.github.io/webauthn/#credential-parameters</a>
example: []
syntax:
content: public sealed class Credential
content.vb: Public NotInheritable Class Credential
inheritance:
- System.Object
inheritedMembers:
- System.Object.Equals(System.Object)
- System.Object.Equals(System.Object,System.Object)
- System.Object.GetHashCode
- System.Object.GetType
- System.Object.ReferenceEquals(System.Object,System.Object)
- System.Object.ToString
- uid: OpenQA.Selenium.VirtualAuth.Credential.CreateNonResidentCredential(System.Byte[],System.String,System.String,System.Int32)
commentId: M:OpenQA.Selenium.VirtualAuth.Credential.CreateNonResidentCredential(System.Byte[],System.String,System.String,System.Int32)
id: CreateNonResidentCredential(System.Byte[],System.String,System.String,System.Int32)
parent: OpenQA.Selenium.VirtualAuth.Credential
langs:
- csharp
- vb
name: CreateNonResidentCredential(byte[], string, string, int)
nameWithType: Credential.CreateNonResidentCredential(byte[], string, string, int)
fullName: OpenQA.Selenium.VirtualAuth.Credential.CreateNonResidentCredential(byte[], string, string, int)
type: Method
source:
remote:
path: dotnet/src/webdriver/VirtualAuth/Credential.cs
branch: trunk
repo: https://github.com/SeleniumHQ/selenium
id: CreateNonResidentCredential
path: ../src/webdriver/VirtualAuth/Credential.cs
startLine: 53
assemblies:
- WebDriver
namespace: OpenQA.Selenium.VirtualAuth
summary: Creates a credential for use with a virtual authenticator.
example: []
syntax:
content: public static Credential CreateNonResidentCredential(byte[] id, string rpId, string privateKey, int signCount)
parameters:
- id: id
type: System.Byte[]
description: A byte array representing the ID of the credentials.
- id: rpId
type: System.String
description: The ID of the relying party to which the credential is scoped.
- id: privateKey
type: System.String
description: The private Key for the credentials.
- id: signCount
type: System.Int32
description: The signature counter for the credentials.
return:
type: OpenQA.Selenium.VirtualAuth.Credential
description: The created instance of the Credential class.
content.vb: Public Shared Function CreateNonResidentCredential(id As Byte(), rpId As String, privateKey As String, signCount As Integer) As Credential
overload: OpenQA.Selenium.VirtualAuth.Credential.CreateNonResidentCredential*
exceptions:
- type: System.ArgumentNullException
commentId: T:System.ArgumentNullException
description: If <code class="paramref">id</code> or <code class="paramref">privateKey</code> are <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/keywords/null">null</a>.
nameWithType.vb: Credential.CreateNonResidentCredential(Byte(), String, String, Integer)
fullName.vb: OpenQA.Selenium.VirtualAuth.Credential.CreateNonResidentCredential(Byte(), String, String, Integer)
name.vb: CreateNonResidentCredential(Byte(), String, String, Integer)
- uid: OpenQA.Selenium.VirtualAuth.Credential.CreateResidentCredential(System.Byte[],System.String,System.String,System.Byte[],System.Int32)
commentId: M:OpenQA.Selenium.VirtualAuth.Credential.CreateResidentCredential(System.Byte[],System.String,System.String,System.Byte[],System.Int32)
id: CreateResidentCredential(System.Byte[],System.String,System.String,System.Byte[],System.Int32)
parent: OpenQA.Selenium.VirtualAuth.Credential
langs:
- csharp
- vb
name: CreateResidentCredential(byte[], string, string, byte[], int)
nameWithType: Credential.CreateResidentCredential(byte[], string, string, byte[], int)
fullName: OpenQA.Selenium.VirtualAuth.Credential.CreateResidentCredential(byte[], string, string, byte[], int)
type: Method
source:
remote:
path: dotnet/src/webdriver/VirtualAuth/Credential.cs
branch: trunk
repo: https://github.com/SeleniumHQ/selenium
id: CreateResidentCredential
path: ../src/webdriver/VirtualAuth/Credential.cs
startLine: 68
assemblies:
- WebDriver
namespace: OpenQA.Selenium.VirtualAuth
summary: Creates a credential for use with a virtual authenticator.
example: []
syntax:
content: public static Credential CreateResidentCredential(byte[] id, string rpId, string privateKey, byte[] userHandle, int signCount)
parameters:
- id: id
type: System.Byte[]
description: A byte array representing the ID of the credentials.
- id: rpId
type: System.String
description: The ID of the relying party to which the credential is scoped.
- id: privateKey
type: System.String
description: The private Key for the credentials.
- id: userHandle
type: System.Byte[]
description: The user handle associated to the credential.
- id: signCount
type: System.Int32
description: The signature counter for the credentials.
return:
type: OpenQA.Selenium.VirtualAuth.Credential
description: The created instance of the Credential class.
content.vb: Public Shared Function CreateResidentCredential(id As Byte(), rpId As String, privateKey As String, userHandle As Byte(), signCount As Integer) As Credential
overload: OpenQA.Selenium.VirtualAuth.Credential.CreateResidentCredential*
exceptions:
- type: System.ArgumentNullException
commentId: T:System.ArgumentNullException
description: If <code class="paramref">id</code> or <code class="paramref">privateKey</code> are <a href="https://learn.microsoft.com/dotnet/csharp/language-reference/keywords/null">null</a>.
nameWithType.vb: Credential.CreateResidentCredential(Byte(), String, String, Byte(), Integer)
fullName.vb: OpenQA.Selenium.VirtualAuth.Credential.CreateResidentCredential(Byte(), String, String, Byte(), Integer)
name.vb: CreateResidentCredential(Byte(), String, String, Byte(), Integer)
- uid: OpenQA.Selenium.VirtualAuth.Credential.Id
commentId: P:OpenQA.Selenium.VirtualAuth.Credential.Id
id: Id
parent: OpenQA.Selenium.VirtualAuth.Credential
langs:
- csharp
- vb
name: Id
nameWithType: Credential.Id
fullName: OpenQA.Selenium.VirtualAuth.Credential.Id
type: Property
source:
remote:
path: dotnet/src/webdriver/VirtualAuth/Credential.cs
branch: trunk
repo: https://github.com/SeleniumHQ/selenium
id: Id
path: ../src/webdriver/VirtualAuth/Credential.cs
startLine: 76
assemblies:
- WebDriver
namespace: OpenQA.Selenium.VirtualAuth
summary: Gets the byte array of the ID of the credential.
example: []
syntax:
content: public byte[] Id { get; }
parameters: []
return:
type: System.Byte[]
content.vb: Public ReadOnly Property Id As Byte()
overload: OpenQA.Selenium.VirtualAuth.Credential.Id*
- uid: OpenQA.Selenium.VirtualAuth.Credential.IsResidentCredential
commentId: P:OpenQA.Selenium.VirtualAuth.Credential.IsResidentCredential
id: IsResidentCredential
parent: OpenQA.Selenium.VirtualAuth.Credential
langs:
- csharp
- vb
name: IsResidentCredential
nameWithType: Credential.IsResidentCredential
fullName: OpenQA.Selenium.VirtualAuth.Credential.IsResidentCredential
type: Property
source:
remote:
path: dotnet/src/webdriver/VirtualAuth/Credential.cs
branch: trunk
repo: https://github.com/SeleniumHQ/selenium
id: IsResidentCredential
path: ../src/webdriver/VirtualAuth/Credential.cs
startLine: 81
assemblies:
- WebDriver
namespace: OpenQA.Selenium.VirtualAuth
summary: Gets a value indicating whether this Credential is a resident credential.
example: []
syntax:
content: public bool IsResidentCredential { get; }
parameters: []
return:
type: System.Boolean
content.vb: Public ReadOnly Property IsResidentCredential As Boolean
overload: OpenQA.Selenium.VirtualAuth.Credential.IsResidentCredential*
- uid: OpenQA.Selenium.VirtualAuth.Credential.RpId
commentId: P:OpenQA.Selenium.VirtualAuth.Credential.RpId
id: RpId
parent: OpenQA.Selenium.VirtualAuth.Credential
langs:
- csharp
- vb
name: RpId
nameWithType: Credential.RpId
fullName: OpenQA.Selenium.VirtualAuth.Credential.RpId
type: Property
source:
remote:
path: dotnet/src/webdriver/VirtualAuth/Credential.cs
branch: trunk
repo: https://github.com/SeleniumHQ/selenium
id: RpId
path: ../src/webdriver/VirtualAuth/Credential.cs
startLine: 86
assemblies:
- WebDriver
namespace: OpenQA.Selenium.VirtualAuth
summary: Gets the ID of the relying party of this credential.
example: []
syntax:
content: public string? RpId { get; }
parameters: []
return:
type: System.String
content.vb: Public ReadOnly Property RpId As String
overload: OpenQA.Selenium.VirtualAuth.Credential.RpId*
- uid: OpenQA.Selenium.VirtualAuth.Credential.PrivateKey
commentId: P:OpenQA.Selenium.VirtualAuth.Credential.PrivateKey
id: PrivateKey
parent: OpenQA.Selenium.VirtualAuth.Credential
langs:
- csharp
- vb
name: PrivateKey
nameWithType: Credential.PrivateKey
fullName: OpenQA.Selenium.VirtualAuth.Credential.PrivateKey
type: Property
source:
remote:
path: dotnet/src/webdriver/VirtualAuth/Credential.cs
branch: trunk
repo: https://github.com/SeleniumHQ/selenium
id: PrivateKey
path: ../src/webdriver/VirtualAuth/Credential.cs
startLine: 91
assemblies:
- WebDriver
namespace: OpenQA.Selenium.VirtualAuth
summary: Gets the private key of the credential.
example: []
syntax:
content: public string PrivateKey { get; }
parameters: []
return:
type: System.String
content.vb: Public ReadOnly Property PrivateKey As String
overload: OpenQA.Selenium.VirtualAuth.Credential.PrivateKey*
- uid: OpenQA.Selenium.VirtualAuth.Credential.UserHandle
commentId: P:OpenQA.Selenium.VirtualAuth.Credential.UserHandle
id: UserHandle
parent: OpenQA.Selenium.VirtualAuth.Credential
langs:
- csharp
- vb
name: UserHandle
nameWithType: Credential.UserHandle
fullName: OpenQA.Selenium.VirtualAuth.Credential.UserHandle
type: Property
source:
remote:
path: dotnet/src/webdriver/VirtualAuth/Credential.cs
branch: trunk
repo: https://github.com/SeleniumHQ/selenium
id: UserHandle
path: ../src/webdriver/VirtualAuth/Credential.cs
startLine: 96
assemblies:
- WebDriver
namespace: OpenQA.Selenium.VirtualAuth
summary: Gets the user handle of the credential.
example: []
syntax:
content: public byte[]? UserHandle { get; }
parameters: []
return:
type: System.Byte[]
content.vb: Public ReadOnly Property UserHandle As Byte()
overload: OpenQA.Selenium.VirtualAuth.Credential.UserHandle*
- uid: OpenQA.Selenium.VirtualAuth.Credential.SignCount
commentId: P:OpenQA.Selenium.VirtualAuth.Credential.SignCount
id: SignCount
parent: OpenQA.Selenium.VirtualAuth.Credential
langs:
- csharp
- vb
name: SignCount
nameWithType: Credential.SignCount
fullName: OpenQA.Selenium.VirtualAuth.Credential.SignCount
type: Property
source:
remote:
path: dotnet/src/webdriver/VirtualAuth/Credential.cs
branch: trunk
repo: https://github.com/SeleniumHQ/selenium
id: SignCount
path: ../src/webdriver/VirtualAuth/Credential.cs
startLine: 101
assemblies:
- WebDriver
namespace: OpenQA.Selenium.VirtualAuth
summary: Gets the signature counter associated to the public key credential source.
example: []
syntax:
content: public int SignCount { get; }
parameters: []
return:
type: System.Int32
content.vb: Public ReadOnly Property SignCount As Integer
overload: OpenQA.Selenium.VirtualAuth.Credential.SignCount*
- uid: OpenQA.Selenium.VirtualAuth.Credential.FromDictionary(System.Collections.Generic.Dictionary{System.String,System.Object})
commentId: M:OpenQA.Selenium.VirtualAuth.Credential.FromDictionary(System.Collections.Generic.Dictionary{System.String,System.Object})
id: FromDictionary(System.Collections.Generic.Dictionary{System.String,System.Object})
parent: OpenQA.Selenium.VirtualAuth.Credential
langs:
- csharp
- vb
name: FromDictionary(Dictionary<string, object>)
nameWithType: Credential.FromDictionary(Dictionary<string, object>)
fullName: OpenQA.Selenium.VirtualAuth.Credential.FromDictionary(System.Collections.Generic.Dictionary<string, object>)
type: Method
source:
remote:
path: dotnet/src/webdriver/VirtualAuth/Credential.cs
branch: trunk
repo: https://github.com/SeleniumHQ/selenium
id: FromDictionary
path: ../src/webdriver/VirtualAuth/Credential.cs
startLine: 108
assemblies:
- WebDriver
namespace: OpenQA.Selenium.VirtualAuth
summary: Creates a Credential instance from a dictionary of values.
example: []
syntax:
content: public static Credential FromDictionary(Dictionary<string, object> dictionary)
parameters:
- id: dictionary
type: System.Collections.Generic.Dictionary{System.String,System.Object}
description: The dictionary of values to use to create the Credential instance.
return:
type: OpenQA.Selenium.VirtualAuth.Credential
description: The created instance of the Credential.
content.vb: Public Shared Function FromDictionary(dictionary As Dictionary(Of String, Object)) As Credential
overload: OpenQA.Selenium.VirtualAuth.Credential.FromDictionary*
nameWithType.vb: Credential.FromDictionary(Dictionary(Of String, Object))
fullName.vb: OpenQA.Selenium.VirtualAuth.Credential.FromDictionary(System.Collections.Generic.Dictionary(Of String, Object))
name.vb: FromDictionary(Dictionary(Of String, Object))
- uid: OpenQA.Selenium.VirtualAuth.Credential.ToDictionary
commentId: M:OpenQA.Selenium.VirtualAuth.Credential.ToDictionary
id: ToDictionary
parent: OpenQA.Selenium.VirtualAuth.Credential
langs:
- csharp
- vb
name: ToDictionary()
nameWithType: Credential.ToDictionary()
fullName: OpenQA.Selenium.VirtualAuth.Credential.ToDictionary()
type: Method
source:
remote:
path: dotnet/src/webdriver/VirtualAuth/Credential.cs
branch: trunk
repo: https://github.com/SeleniumHQ/selenium
id: ToDictionary
path: ../src/webdriver/VirtualAuth/Credential.cs
startLine: 124
assemblies:
- WebDriver
namespace: OpenQA.Selenium.VirtualAuth
summary: Serializes this Credential instance to a dictionary.
example: []
syntax:
content: public Dictionary<string, object> ToDictionary()
return:
type: System.Collections.Generic.Dictionary{System.String,System.Object}
description: The dictionary containing the values for this Credential.
content.vb: Public Function ToDictionary() As Dictionary(Of String, Object)
overload: OpenQA.Selenium.VirtualAuth.Credential.ToDictionary*
references:
- uid: OpenQA.Selenium.VirtualAuth
commentId: N:OpenQA.Selenium.VirtualAuth
href: OpenQA.html
name: OpenQA.Selenium.VirtualAuth
nameWithType: OpenQA.Selenium.VirtualAuth
fullName: OpenQA.Selenium.VirtualAuth
spec.csharp:
- uid: OpenQA
name: OpenQA
href: OpenQA.html
- name: .
- uid: OpenQA.Selenium
name: Selenium
href: OpenQA.Selenium.html
- name: .
- uid: OpenQA.Selenium.VirtualAuth
name: VirtualAuth
href: OpenQA.Selenium.VirtualAuth.html
spec.vb:
- uid: OpenQA
name: OpenQA
href: OpenQA.html
- name: .
- uid: OpenQA.Selenium
name: Selenium
href: OpenQA.Selenium.html
- name: .
- uid: OpenQA.Selenium.VirtualAuth
name: VirtualAuth
href: OpenQA.Selenium.VirtualAuth.html
- uid: System.Object
commentId: T:System.Object
parent: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
name: object
nameWithType: object
fullName: object
nameWithType.vb: Object
fullName.vb: Object
name.vb: Object
- uid: System.Object.Equals(System.Object)
commentId: M:System.Object.Equals(System.Object)
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
name: Equals(object)
nameWithType: object.Equals(object)
fullName: object.Equals(object)
nameWithType.vb: Object.Equals(Object)
fullName.vb: Object.Equals(Object)
name.vb: Equals(Object)
spec.csharp:
- uid: System.Object.Equals(System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: System.Object.Equals(System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object)
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System.Object.Equals(System.Object,System.Object)
commentId: M:System.Object.Equals(System.Object,System.Object)
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
name: Equals(object, object)
nameWithType: object.Equals(object, object)
fullName: object.Equals(object, object)
nameWithType.vb: Object.Equals(Object, Object)
fullName.vb: Object.Equals(Object, Object)
name.vb: Equals(Object, Object)
spec.csharp:
- uid: System.Object.Equals(System.Object,System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: System.Object.Equals(System.Object,System.Object)
name: Equals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object)
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System.Object.GetHashCode
commentId: M:System.Object.GetHashCode
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
name: GetHashCode()
nameWithType: object.GetHashCode()
fullName: object.GetHashCode()
nameWithType.vb: Object.GetHashCode()
fullName.vb: Object.GetHashCode()
spec.csharp:
- uid: System.Object.GetHashCode
name: GetHashCode
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
- name: (
- name: )
spec.vb:
- uid: System.Object.GetHashCode
name: GetHashCode
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode
- name: (
- name: )
- uid: System.Object.GetType
commentId: M:System.Object.GetType
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
name: GetType()
nameWithType: object.GetType()
fullName: object.GetType()
nameWithType.vb: Object.GetType()
fullName.vb: Object.GetType()
spec.csharp:
- uid: System.Object.GetType
name: GetType
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
- name: (
- name: )
spec.vb:
- uid: System.Object.GetType
name: GetType
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.gettype
- name: (
- name: )
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
commentId: M:System.Object.ReferenceEquals(System.Object,System.Object)
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
name: ReferenceEquals(object, object)
nameWithType: object.ReferenceEquals(object, object)
fullName: object.ReferenceEquals(object, object)
nameWithType.vb: Object.ReferenceEquals(Object, Object)
fullName.vb: Object.ReferenceEquals(Object, Object)
name.vb: ReferenceEquals(Object, Object)
spec.csharp:
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
name: ReferenceEquals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
- name: (
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
spec.vb:
- uid: System.Object.ReferenceEquals(System.Object,System.Object)
name: ReferenceEquals
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals
- name: (
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: ','
- name: " "
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System.Object.ToString
commentId: M:System.Object.ToString
parent: System.Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
name: ToString()
nameWithType: object.ToString()
fullName: object.ToString()
nameWithType.vb: Object.ToString()
fullName.vb: Object.ToString()
spec.csharp:
- uid: System.Object.ToString
name: ToString
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
- name: (
- name: )
spec.vb:
- uid: System.Object.ToString
name: ToString
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object.tostring
- name: (
- name: )
- uid: System
commentId: N:System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
name: System
nameWithType: System
fullName: System
- uid: System.ArgumentNullException
commentId: T:System.ArgumentNullException
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.argumentnullexception
name: ArgumentNullException
nameWithType: ArgumentNullException
fullName: System.ArgumentNullException
- uid: OpenQA.Selenium.VirtualAuth.Credential.CreateNonResidentCredential*
commentId: Overload:OpenQA.Selenium.VirtualAuth.Credential.CreateNonResidentCredential
href: OpenQA.Selenium.VirtualAuth.Credential.html#OpenQA_Selenium_VirtualAuth_Credential_CreateNonResidentCredential_System_Byte___System_String_System_String_System_Int32_
name: CreateNonResidentCredential
nameWithType: Credential.CreateNonResidentCredential
fullName: OpenQA.Selenium.VirtualAuth.Credential.CreateNonResidentCredential
- uid: System.Byte[]
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.byte
name: byte[]
nameWithType: byte[]
fullName: byte[]
nameWithType.vb: Byte()
fullName.vb: Byte()
name.vb: Byte()
spec.csharp:
- uid: System.Byte
name: byte
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.byte
- name: '['
- name: ']'
spec.vb:
- uid: System.Byte
name: Byte
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.byte
- name: (
- name: )
- uid: System.String
commentId: T:System.String
parent: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
name: string
nameWithType: string
fullName: string
nameWithType.vb: String
fullName.vb: String
name.vb: String
- uid: System.Int32
commentId: T:System.Int32
parent: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.int32
name: int
nameWithType: int
fullName: int
nameWithType.vb: Integer
fullName.vb: Integer
name.vb: Integer
- uid: OpenQA.Selenium.VirtualAuth.Credential
commentId: T:OpenQA.Selenium.VirtualAuth.Credential
parent: OpenQA.Selenium.VirtualAuth
href: OpenQA.Selenium.VirtualAuth.Credential.html
name: Credential
nameWithType: Credential
fullName: OpenQA.Selenium.VirtualAuth.Credential
- uid: OpenQA.Selenium.VirtualAuth.Credential.CreateResidentCredential*
commentId: Overload:OpenQA.Selenium.VirtualAuth.Credential.CreateResidentCredential
href: OpenQA.Selenium.VirtualAuth.Credential.html#OpenQA_Selenium_VirtualAuth_Credential_CreateResidentCredential_System_Byte___System_String_System_String_System_Byte___System_Int32_
name: CreateResidentCredential
nameWithType: Credential.CreateResidentCredential
fullName: OpenQA.Selenium.VirtualAuth.Credential.CreateResidentCredential
- uid: OpenQA.Selenium.VirtualAuth.Credential.Id*
commentId: Overload:OpenQA.Selenium.VirtualAuth.Credential.Id
href: OpenQA.Selenium.VirtualAuth.Credential.html#OpenQA_Selenium_VirtualAuth_Credential_Id
name: Id
nameWithType: Credential.Id
fullName: OpenQA.Selenium.VirtualAuth.Credential.Id
- uid: OpenQA.Selenium.VirtualAuth.Credential.IsResidentCredential*
commentId: Overload:OpenQA.Selenium.VirtualAuth.Credential.IsResidentCredential
href: OpenQA.Selenium.VirtualAuth.Credential.html#OpenQA_Selenium_VirtualAuth_Credential_IsResidentCredential
name: IsResidentCredential
nameWithType: Credential.IsResidentCredential
fullName: OpenQA.Selenium.VirtualAuth.Credential.IsResidentCredential
- uid: System.Boolean
commentId: T:System.Boolean
parent: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.boolean
name: bool
nameWithType: bool
fullName: bool
nameWithType.vb: Boolean
fullName.vb: Boolean
name.vb: Boolean
- uid: OpenQA.Selenium.VirtualAuth.Credential.RpId*
commentId: Overload:OpenQA.Selenium.VirtualAuth.Credential.RpId
href: OpenQA.Selenium.VirtualAuth.Credential.html#OpenQA_Selenium_VirtualAuth_Credential_RpId
name: RpId
nameWithType: Credential.RpId
fullName: OpenQA.Selenium.VirtualAuth.Credential.RpId
- uid: OpenQA.Selenium.VirtualAuth.Credential.PrivateKey*
commentId: Overload:OpenQA.Selenium.VirtualAuth.Credential.PrivateKey
href: OpenQA.Selenium.VirtualAuth.Credential.html#OpenQA_Selenium_VirtualAuth_Credential_PrivateKey
name: PrivateKey
nameWithType: Credential.PrivateKey
fullName: OpenQA.Selenium.VirtualAuth.Credential.PrivateKey
- uid: OpenQA.Selenium.VirtualAuth.Credential.UserHandle*
commentId: Overload:OpenQA.Selenium.VirtualAuth.Credential.UserHandle
href: OpenQA.Selenium.VirtualAuth.Credential.html#OpenQA_Selenium_VirtualAuth_Credential_UserHandle
name: UserHandle
nameWithType: Credential.UserHandle
fullName: OpenQA.Selenium.VirtualAuth.Credential.UserHandle
- uid: OpenQA.Selenium.VirtualAuth.Credential.SignCount*
commentId: Overload:OpenQA.Selenium.VirtualAuth.Credential.SignCount
href: OpenQA.Selenium.VirtualAuth.Credential.html#OpenQA_Selenium_VirtualAuth_Credential_SignCount
name: SignCount
nameWithType: Credential.SignCount
fullName: OpenQA.Selenium.VirtualAuth.Credential.SignCount
- uid: OpenQA.Selenium.VirtualAuth.Credential.FromDictionary*
commentId: Overload:OpenQA.Selenium.VirtualAuth.Credential.FromDictionary
href: OpenQA.Selenium.VirtualAuth.Credential.html#OpenQA_Selenium_VirtualAuth_Credential_FromDictionary_System_Collections_Generic_Dictionary_System_String_System_Object__
name: FromDictionary
nameWithType: Credential.FromDictionary
fullName: OpenQA.Selenium.VirtualAuth.Credential.FromDictionary
- uid: System.Collections.Generic.Dictionary{System.String,System.Object}
commentId: T:System.Collections.Generic.Dictionary{System.String,System.Object}
parent: System.Collections.Generic
definition: System.Collections.Generic.Dictionary`2
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
name: Dictionary<string, object>
nameWithType: Dictionary<string, object>
fullName: System.Collections.Generic.Dictionary<string, object>
nameWithType.vb: Dictionary(Of String, Object)
fullName.vb: System.Collections.Generic.Dictionary(Of String, Object)
name.vb: Dictionary(Of String, Object)
spec.csharp:
- uid: System.Collections.Generic.Dictionary`2
name: Dictionary
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
- name: <
- uid: System.String
name: string
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: ','
- name: " "
- uid: System.Object
name: object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: '>'
spec.vb:
- uid: System.Collections.Generic.Dictionary`2
name: Dictionary
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
- name: (
- name: Of
- name: " "
- uid: System.String
name: String
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.string
- name: ','
- name: " "
- uid: System.Object
name: Object
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.object
- name: )
- uid: System.Collections.Generic.Dictionary`2
commentId: T:System.Collections.Generic.Dictionary`2
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
name: Dictionary<TKey, TValue>
nameWithType: Dictionary<TKey, TValue>
fullName: System.Collections.Generic.Dictionary<TKey, TValue>
nameWithType.vb: Dictionary(Of TKey, TValue)
fullName.vb: System.Collections.Generic.Dictionary(Of TKey, TValue)
name.vb: Dictionary(Of TKey, TValue)
spec.csharp:
- uid: System.Collections.Generic.Dictionary`2
name: Dictionary
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
- name: <
- name: TKey
- name: ','
- name: " "
- name: TValue
- name: '>'
spec.vb:
- uid: System.Collections.Generic.Dictionary`2
name: Dictionary
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic.dictionary-2
- name: (
- name: Of
- name: " "
- name: TKey
- name: ','
- name: " "
- name: TValue
- name: )
- uid: System.Collections.Generic
commentId: N:System.Collections.Generic
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
name: System.Collections.Generic
nameWithType: System.Collections.Generic
fullName: System.Collections.Generic
spec.csharp:
- uid: System
name: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
- name: .
- uid: System.Collections
name: Collections
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections
- name: .
- uid: System.Collections.Generic
name: Generic
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic
spec.vb:
- uid: System
name: System
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system
- name: .
- uid: System.Collections
name: Collections
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections
- name: .
- uid: System.Collections.Generic
name: Generic
isExternal: true
href: https://learn.microsoft.com/dotnet/api/system.collections.generic
- uid: OpenQA.Selenium.VirtualAuth.Credential.ToDictionary*
commentId: Overload:OpenQA.Selenium.VirtualAuth.Credential.ToDictionary
href: OpenQA.Selenium.VirtualAuth.Credential.html#OpenQA_Selenium_VirtualAuth_Credential_ToDictionary
name: ToDictionary
nameWithType: Credential.ToDictionary
fullName: OpenQA.Selenium.VirtualAuth.Credential.ToDictionary