ContactProfile 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
ContactProfile() |
Initializes a new instance of the ContactProfile class. |
ContactProfile(String, String, String, String, String, String, String, IList<String>, String) |
Initializes a new instance of the ContactProfile class. |
ContactProfile()
Initializes a new instance of the ContactProfile class.
public ContactProfile ();
Public Sub New ()
Applies to
ContactProfile(String, String, String, String, String, String, String, IList<String>, String)
Initializes a new instance of the ContactProfile class.
public ContactProfile (string firstName, string lastName, string preferredContactMethod, string primaryEmailAddress, string preferredTimeZone, string country, string preferredSupportLanguage, System.Collections.Generic.IList<string> additionalEmailAddresses = default, string phoneNumber = default);
new Microsoft.Azure.Management.Support.Models.ContactProfile : string * string * string * string * string * string * string * System.Collections.Generic.IList<string> * string -> Microsoft.Azure.Management.Support.Models.ContactProfile
Public Sub New (firstName As String, lastName As String, preferredContactMethod As String, primaryEmailAddress As String, preferredTimeZone As String, country As String, preferredSupportLanguage As String, Optional additionalEmailAddresses As IList(Of String) = Nothing, Optional phoneNumber As String = Nothing)
Parameters
- firstName
- String
First name.
- lastName
- String
Last name.
- preferredContactMethod
- String
Preferred contact method. Possible values include: 'email', 'phone'
- primaryEmailAddress
- String
Primary email address.
- preferredTimeZone
- String
Time zone of the user. This is the name of the time zone from Microsoft Time Zone Index Values.
- country
- String
Country of the user. This is the ISO 3166-1 alpha-3 code.
- preferredSupportLanguage
- String
Preferred language of support from Azure. Support languages vary based on the severity you choose for your support ticket. Learn more at Azure Severity and responsiveness. Use the standard language-country code. Valid values are 'en-us' for English, 'zh-hans' for Chinese, 'es-es' for Spanish, 'fr-fr' for French, 'ja-jp' for Japanese, 'ko-kr' for Korean, 'ru-ru' for Russian, 'pt-br' for Portuguese, 'it-it' for Italian, 'zh-tw' for Chinese and 'de-de' for German.
Additional email addresses listed will be copied on any correspondence about the support ticket.
- phoneNumber
- String
Phone number. This is required if preferred contact method is phone.
Applies to
Azure SDK for .NET