Share via


Contacts Constructors

Definition

Overloads

Contacts()

Initializes a new instance of the Contacts class.

Contacts(String, IList<Contact>)

Initializes a new instance of the Contacts class.

Contacts()

Source:
Contacts.cs

Initializes a new instance of the Contacts class.

public Contacts ();
Public Sub New ()

Applies to

Contacts(String, IList<Contact>)

Source:
Contacts.cs

Initializes a new instance of the Contacts class.

public Contacts (string id = default, System.Collections.Generic.IList<Microsoft.Azure.KeyVault.Models.Contact> contactList = default);
new Microsoft.Azure.KeyVault.Models.Contacts : string * System.Collections.Generic.IList<Microsoft.Azure.KeyVault.Models.Contact> -> Microsoft.Azure.KeyVault.Models.Contacts
Public Sub New (Optional id As String = Nothing, Optional contactList As IList(Of Contact) = Nothing)

Parameters

id
String

Identifier for the contacts collection.

contactList
IList<Contact>

The contact list for the vault certificates.

Applies to