PropertySet コンストラクター

定義

オーバーロード

PropertySet()

ID に基づいて PropertySet クラスの新しいインスタンスを初期化します。

PropertySet(BasePropertySet)

指定した基本プロパティ セットに基づいて、PropertySet クラスの新しいインスタンスを初期化します。

PropertySet(PropertyDefinitionBase[])

ID と指定した追加プロパティに基づいて PropertySet クラスの新しいインスタンスを初期化します。

PropertySet(IEnumerable<PropertyDefinitionBase>)

ID と指定した追加プロパティのコレクションに基づいて、PropertySet クラスの新しいインスタンスを初期化します。

PropertySet(BasePropertySet, PropertyDefinitionBase[])

指定した基本プロパティ セットと追加のプロパティを使用して、PropertySet クラスの新しいインスタンスを初期化します。

PropertySet(BasePropertySet, IEnumerable<PropertyDefinitionBase>)

指定した基本プロパティ セットと追加プロパティのコレクションを使用して、PropertySet クラスの新しいインスタンスを初期化します。

PropertySet()

ID に基づいて PropertySet クラスの新しいインスタンスを初期化します。

public:
 PropertySet();
public PropertySet ();
Public Sub New ()

適用対象

PropertySet(BasePropertySet)

指定した基本プロパティ セットに基づいて、PropertySet クラスの新しいインスタンスを初期化します。

public:
 PropertySet(Microsoft::Exchange::WebServices::Data::BasePropertySet basePropertySet);
public PropertySet (Microsoft.Exchange.WebServices.Data.BasePropertySet basePropertySet);

パラメーター

basePropertySet
BasePropertySet

プロパティ セットの基に設定された基本プロパティ。

適用対象

PropertySet(PropertyDefinitionBase[])

ID と指定した追加プロパティに基づいて PropertySet クラスの新しいインスタンスを初期化します。

public:
 PropertySet(... cli::array <Microsoft::Exchange::WebServices::Data::PropertyDefinitionBase ^> ^ additionalProperties);
public PropertySet (params Microsoft.Exchange.WebServices.Data.PropertyDefinitionBase[] additionalProperties);
Public Sub New (ParamArray additionalProperties As PropertyDefinitionBase())

パラメーター

additionalProperties
PropertyDefinitionBase[]

プロパティ セットに含める追加のプロパティ。 プロパティ定義は、スキーマ クラス (EmailMessageSchema.Subject、AppointmentSchema.Start、ContactSchema.GivenName など) から静的メンバーとして使用できます。

適用対象

PropertySet(IEnumerable<PropertyDefinitionBase>)

ID と指定した追加プロパティのコレクションに基づいて、PropertySet クラスの新しいインスタンスを初期化します。

public:
 PropertySet(System::Collections::Generic::IEnumerable<Microsoft::Exchange::WebServices::Data::PropertyDefinitionBase ^> ^ additionalProperties);
public PropertySet (System.Collections.Generic.IEnumerable<Microsoft.Exchange.WebServices.Data.PropertyDefinitionBase> additionalProperties);
Public Sub New (additionalProperties As IEnumerable(Of PropertyDefinitionBase))

パラメーター

additionalProperties
IEnumerable<PropertyDefinitionBase>

プロパティ セットに含める追加のプロパティ。 プロパティ定義は、スキーマ クラス (EmailMessageSchema.Subject、AppointmentSchema.Start、ContactSchema.GivenName など) から静的メンバーとして使用できます。

適用対象

PropertySet(BasePropertySet, PropertyDefinitionBase[])

指定した基本プロパティ セットと追加のプロパティを使用して、PropertySet クラスの新しいインスタンスを初期化します。

public:
 PropertySet(Microsoft::Exchange::WebServices::Data::BasePropertySet basePropertySet, ... cli::array <Microsoft::Exchange::WebServices::Data::PropertyDefinitionBase ^> ^ additionalProperties);
public PropertySet (Microsoft.Exchange.WebServices.Data.BasePropertySet basePropertySet, params Microsoft.Exchange.WebServices.Data.PropertyDefinitionBase[] additionalProperties);

パラメーター

basePropertySet
BasePropertySet

プロパティ セットの基に設定された基本プロパティ。

additionalProperties
PropertyDefinitionBase[]

プロパティ セットに含める追加のプロパティ。

注釈

プロパティ定義は、スキーマ クラスから静的メンバーとして使用できます (EmailMessageSchema.Subject、AppointmentSchema.Start、ContactSchema.GivenName など)

適用対象

PropertySet(BasePropertySet, IEnumerable<PropertyDefinitionBase>)

指定した基本プロパティ セットと追加プロパティのコレクションを使用して、PropertySet クラスの新しいインスタンスを初期化します。

public:
 PropertySet(Microsoft::Exchange::WebServices::Data::BasePropertySet basePropertySet, System::Collections::Generic::IEnumerable<Microsoft::Exchange::WebServices::Data::PropertyDefinitionBase ^> ^ additionalProperties);
public PropertySet (Microsoft.Exchange.WebServices.Data.BasePropertySet basePropertySet, System.Collections.Generic.IEnumerable<Microsoft.Exchange.WebServices.Data.PropertyDefinitionBase> additionalProperties);

パラメーター

basePropertySet
BasePropertySet

プロパティ セットの基に設定された基本プロパティ。

additionalProperties
IEnumerable<PropertyDefinitionBase>

プロパティ セットに含める追加のプロパティ。 プロパティ定義は、スキーマ クラスの静的メンバーとして使用できます (EmailMessageSchema.Subject、AppointmentSchema.Start、ContactSchema.GivenName など)。

適用対象