GroupMember 构造函数

定义

重载

GroupMember()

初始化 类的新实例 GroupMember

GroupMember(EmailAddress)

从指定的电子邮件地址初始化 类的新实例 GroupMember

GroupMember(ItemId)

初始化 类的新实例 GroupMember

GroupMember(String)

使具有指定电子邮件地址的 GroupMember 类的新实例化。

GroupMember(Contact, EmailAddressKey)

Contact由指定电子邮件地址编制索引的实例初始化 类的新GroupMember实例。

GroupMember(ItemId, String)

从指定的标识符初始化 类的新实例 GroupMember

GroupMember(String, MailboxType)

初始化具有指定地址的 GroupMember 类的新实例。

GroupMember(String, String)

初始化具有指定名称和电子邮件地址的 GroupMember 类的新实例。

GroupMember(String, String, MailboxType)

初始化具有指定地址、路由和邮箱类型的 类的新实例 GroupMember

GroupMember(String, String, String)

使用指定的名称、电子邮件地址和路由类型初始化 类的新实例 GroupMember

GroupMember()

初始化 类的新实例 GroupMember

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

适用于

GroupMember(EmailAddress)

从指定的电子邮件地址初始化 类的新实例 GroupMember

public:
 GroupMember(Microsoft::Exchange::WebServices::Data::EmailAddress ^ addressInformation);
public GroupMember (Microsoft.Exchange.WebServices.Data.EmailAddress addressInformation);
Public Sub New (addressInformation As EmailAddress)

参数

addressInformation
EmailAddress

成员的电子邮件地址。

适用于

GroupMember(ItemId)

初始化 类的新实例 GroupMember

public:
 GroupMember(Microsoft::Exchange::WebServices::Data::ItemId ^ contactGroupId);
public GroupMember (Microsoft.Exchange.WebServices.Data.ItemId contactGroupId);
Public Sub New (contactGroupId As ItemId)

参数

contactGroupId
ItemId

要将成员链接到的联系人组的标识符。

适用于

GroupMember(String)

使具有指定电子邮件地址的 GroupMember 类的新实例化。

public:
 GroupMember(System::String ^ smtpAddress);
public GroupMember (string smtpAddress);
Public Sub New (smtpAddress As String)

参数

smtpAddress
String

成员的 SMTP 电子邮件地址。

适用于

GroupMember(Contact, EmailAddressKey)

Contact由指定电子邮件地址编制索引的实例初始化 类的新GroupMember实例。

public:
 GroupMember(Microsoft::Exchange::WebServices::Data::Contact ^ contact, Microsoft::Exchange::WebServices::Data::EmailAddressKey emailAddressKey);
public GroupMember (Microsoft.Exchange.WebServices.Data.Contact contact, Microsoft.Exchange.WebServices.Data.EmailAddressKey emailAddressKey);

参数

contact
Contact

要链接到的联系人。

emailAddressKey
EmailAddressKey

要链接到的联系人的电子邮件地址。

适用于

GroupMember(ItemId, String)

从指定的标识符初始化 类的新实例 GroupMember

public:
 GroupMember(Microsoft::Exchange::WebServices::Data::ItemId ^ contactId, System::String ^ addressToLink);
public GroupMember (Microsoft.Exchange.WebServices.Data.ItemId contactId, string addressToLink);
Public Sub New (contactId As ItemId, addressToLink As String)

参数

contactId
ItemId

联系人成员的标识符。

addressToLink
String

联系人的电子邮件地址。

适用于

GroupMember(String, MailboxType)

初始化具有指定地址的 GroupMember 类的新实例。

public:
 GroupMember(System::String ^ smtpAddress, Microsoft::Exchange::WebServices::Data::MailboxType mailboxType);
public GroupMember (string smtpAddress, Microsoft.Exchange.WebServices.Data.MailboxType mailboxType);

参数

smtpAddress
String

成员的 SMTP 地址。

mailboxType
MailboxType

枚举值之 MailboxType 一。

适用于

GroupMember(String, String)

初始化具有指定名称和电子邮件地址的 GroupMember 类的新实例。

public:
 GroupMember(System::String ^ name, System::String ^ smtpAddress);
public GroupMember (string name, string smtpAddress);
Public Sub New (name As String, smtpAddress As String)

参数

name
String

成员的名称。

smtpAddress
String

成员的 SMTP 地址。

适用于

GroupMember(String, String, MailboxType)

初始化具有指定地址、路由和邮箱类型的 类的新实例 GroupMember

public:
 GroupMember(System::String ^ address, System::String ^ routingType, Microsoft::Exchange::WebServices::Data::MailboxType mailboxType);
public GroupMember (string address, string routingType, Microsoft.Exchange.WebServices.Data.MailboxType mailboxType);

参数

address
String

成员的电子邮件地址。

routingType
String

地址的路由类型。

mailboxType
MailboxType

枚举值之 MailboxType 一。

适用于

GroupMember(String, String, String)

使用指定的名称、电子邮件地址和路由类型初始化 类的新实例 GroupMember

public:
 GroupMember(System::String ^ name, System::String ^ address, System::String ^ routingType);
public GroupMember (string name, string address, string routingType);
Public Sub New (name As String, address As String, routingType As String)

参数

name
String

组成员的名称。

address
String

组成员的电子邮件地址。

routingType
String

电子邮件地址的路由类型。

适用于