PeerNearMe.Invite 方法

定义

向远程对等方发送加入对等协作应用程序的邀请。

重载

Invite()

向远程对等方发送加入对等协作应用程序的邀请。

Invite(PeerApplication, String, Byte[])

向远程对等方发送加入对等协作应用程序的邀请,其中包含描述或指定应用程序邀请的数据。

Invite()

向远程对等方发送加入对等协作应用程序的邀请。

public:
 override System::Net::PeerToPeer::Collaboration::PeerInvitationResponse ^ Invite();
[System.Security.SecurityCritical]
public override System.Net.PeerToPeer.Collaboration.PeerInvitationResponse Invite ();
[<System.Security.SecurityCritical>]
override this.Invite : unit -> System.Net.PeerToPeer.Collaboration.PeerInvitationResponse
Public Overrides Function Invite () As PeerInvitationResponse

返回

PeerInvitationResponse 对象,其中包含由远程对等方指定的相关 PeerInvitationResponseType 值。

属性

例外

PeerNearMe 对象已释放。

适用于

Invite(PeerApplication, String, Byte[])

向远程对等方发送加入对等协作应用程序的邀请,其中包含描述或指定应用程序邀请的数据。

public:
 override System::Net::PeerToPeer::Collaboration::PeerInvitationResponse ^ Invite(System::Net::PeerToPeer::Collaboration::PeerApplication ^ applicationToInvite, System::String ^ message, cli::array <System::Byte> ^ invitationData);
[System.Security.SecurityCritical]
public override System.Net.PeerToPeer.Collaboration.PeerInvitationResponse Invite (System.Net.PeerToPeer.Collaboration.PeerApplication applicationToInvite, string message, byte[] invitationData);
[<System.Security.SecurityCritical>]
override this.Invite : System.Net.PeerToPeer.Collaboration.PeerApplication * string * byte[] -> System.Net.PeerToPeer.Collaboration.PeerInvitationResponse
Public Overrides Function Invite (applicationToInvite As PeerApplication, message As String, invitationData As Byte()) As PeerInvitationResponse

参数

applicationToInvite
PeerApplication

指定由 PeerApplication 实例表示的相关对等协作应用程序。

message
String

要与应用程序邀请一起发送到远程对等方的消息。 消息的长度不能超过 255 个 Unicode 字符。

invitationData
Byte[]

与邀请关联的用户定义的数据 Blob。 其大小限制为 16K(16,384 字节)。

返回

PeerInvitationResponse 对象,其中包含由远程对等方指定的相关 PeerInvitationResponseType 值。

属性

例外

applicationToInvite 参数指定了 null

适用于