AutodiscoverService.GetDomainSettings Method

Definition

Overloads

GetDomainSettings(String, Nullable<ExchangeVersion>, DomainSettingName[])

Retrieves the specified settings for a domain with the specified server version.

GetDomainSettings(IEnumerable<String>, Nullable<ExchangeVersion>, DomainSettingName[])

Retrieves the specified settings for a set of domains at the specified URLs with the specified server version.

GetDomainSettings(String, Nullable<ExchangeVersion>, DomainSettingName[])

Retrieves the specified settings for a domain with the specified server version.

public:
 Microsoft::Exchange::WebServices::Autodiscover::GetDomainSettingsResponse ^ GetDomainSettings(System::String ^ domain, Nullable<Microsoft::Exchange::WebServices::Data::ExchangeVersion> requestedVersion, ... cli::array <Microsoft::Exchange::WebServices::Autodiscover::DomainSettingName> ^ domainSettingNames);
public Microsoft.Exchange.WebServices.Autodiscover.GetDomainSettingsResponse GetDomainSettings (string domain, Nullable<Microsoft.Exchange.WebServices.Data.ExchangeVersion> requestedVersion, params Microsoft.Exchange.WebServices.Autodiscover.DomainSettingName[] domainSettingNames);
Public Function GetDomainSettings (domain As String, requestedVersion As Nullable(Of ExchangeVersion), ParamArray domainSettingNames As DomainSettingName()) As GetDomainSettingsResponse

Parameters

domain
String

The SMTP address of the domain.

requestedVersion
Nullable<ExchangeVersion>

One of the ExchangeVersion enumeration value that specifies the server version to be used for operation requests.

domainSettingNames
DomainSettingName[]

The domain setting names.

Returns

The GetDomainSettingsResponse instance that contains the settings for the specified domain.

Applies to

GetDomainSettings(IEnumerable<String>, Nullable<ExchangeVersion>, DomainSettingName[])

Retrieves the specified settings for a set of domains at the specified URLs with the specified server version.

public:
 Microsoft::Exchange::WebServices::Autodiscover::GetDomainSettingsResponseCollection ^ GetDomainSettings(System::Collections::Generic::IEnumerable<System::String ^> ^ domains, Nullable<Microsoft::Exchange::WebServices::Data::ExchangeVersion> requestedVersion, ... cli::array <Microsoft::Exchange::WebServices::Autodiscover::DomainSettingName> ^ domainSettingNames);
public Microsoft.Exchange.WebServices.Autodiscover.GetDomainSettingsResponseCollection GetDomainSettings (System.Collections.Generic.IEnumerable<string> domains, Nullable<Microsoft.Exchange.WebServices.Data.ExchangeVersion> requestedVersion, params Microsoft.Exchange.WebServices.Autodiscover.DomainSettingName[] domainSettingNames);
Public Function GetDomainSettings (domains As IEnumerable(Of String), requestedVersion As Nullable(Of ExchangeVersion), ParamArray domainSettingNames As DomainSettingName()) As GetDomainSettingsResponseCollection

Parameters

domains
IEnumerable<String>

The SMTP addresses of the domains.

requestedVersion
Nullable<ExchangeVersion>

One of the ExchangeVersion enumeration values that specifies the server version to be used for operation requests.

domainSettingNames
DomainSettingName[]

The domain setting names.

Returns

A collection that contains the responses for each individual domain.

Remarks

The returned GetDomainSettingsResponseCollection object contains the settings for the domains.

Applies to