RemoteSystemSessionMessageChannel 类

定义

处理远程会话中的专用数据传输通道。 此类拥有发送和接收功能。

public ref class RemoteSystemSessionMessageChannel sealed
/// [Windows.Foundation.Metadata.Activatable(Windows.System.RemoteSystems.IRemoteSystemSessionMessageChannelFactory, 262144, "Windows.Foundation.UniversalApiContract")]
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 262144)]
/// [Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
/// [Windows.Foundation.Metadata.Threading(Windows.Foundation.Metadata.ThreadingModel.Both)]
class RemoteSystemSessionMessageChannel final
[Windows.Foundation.Metadata.Activatable(typeof(Windows.System.RemoteSystems.IRemoteSystemSessionMessageChannelFactory), 262144, "Windows.Foundation.UniversalApiContract")]
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 262144)]
[Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
[Windows.Foundation.Metadata.Threading(Windows.Foundation.Metadata.ThreadingModel.Both)]
public sealed class RemoteSystemSessionMessageChannel
function RemoteSystemSessionMessageChannel(session, channelName, reliability)
Public NotInheritable Class RemoteSystemSessionMessageChannel
继承
Object Platform::Object IInspectable RemoteSystemSessionMessageChannel
属性

Windows 要求

设备系列
Windows 10 Creators Update (在 10.0.15063.0 中引入)
API contract
Windows.Foundation.UniversalApiContract (在 v4.0 中引入)
应用功能
remoteSystem

注解

通过此通道异步发送和接收消息,因此无法保证消息按时间顺序排序。

消息通过中心辐射型模型传递:客户端发送给参与者或一组参与者的任何消息首先在内部发送到主机设备,然后由主机设备发送给目标参与者。

构造函数

RemoteSystemSessionMessageChannel(RemoteSystemSession, String)

初始化 RemoteSystemSessionMessageChannel 的实例,以管理给定远程会话的消息传送

RemoteSystemSessionMessageChannel(RemoteSystemSession, String, RemoteSystemSessionMessageChannelReliability)

初始化 RemoteSystemSessionMessageChannel 的实例,以管理给定远程会话的消息传送,并指定通道的可靠性类型。

属性

Session

获取此消息传送通道所对应的远程会话。

方法

BroadcastValueSetAsync(ValueSet)

向此远程会话消息传送通道中的所有其他参与者发送消息。

SendValueSetAsync(ValueSet, RemoteSystemSessionParticipant)

向此远程会话消息通道中的参与者发送消息。

SendValueSetToParticipantsAsync(ValueSet, IIterable<RemoteSystemSessionParticipant>)

向此远程会话消息传送通道中的指定集参与者发送消息。

事件

ValueSetReceived

当通道接收以键值对) 形式的消息 (时引发。 消息的内容包含在传入的 RemoteSystemSessionValueSetReceivedEventArgs 对象中。

适用于