MessageWebSocket.SendFinalFrameAsync(IBuffer) 方法

定义

异步 (进度) 在顺序流中写入数据帧,其语义是 WebSocket 消息中的最后一帧, (此帧上的 FIN 位设置为 1) 。 此方法和 SendNonfinalFrameAsync 允许发送单个 WebSocket 帧。

public:
 virtual IAsyncOperationWithProgress<unsigned int, unsigned int> ^ SendFinalFrameAsync(IBuffer ^ data) = SendFinalFrameAsync;
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperationWithProgress<uint32_t, uint32_t> SendFinalFrameAsync(IBuffer const& data);
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperationWithProgress<uint,uint> SendFinalFrameAsync(IBuffer data);
function sendFinalFrameAsync(data)
Public Function SendFinalFrameAsync (data As IBuffer) As IAsyncOperationWithProgress(Of UInteger, UInteger)

参数

data
IBuffer

包含构成要发送的帧的数据的缓冲区。

返回

IAsyncOperationWithProgress<UInt32,UInt32>

Windows.Foundation.IAsyncOperationWithProgress<unsigned int,unsigned int>

IAsyncOperationWithProgress<uint32_t,uint32_t>

具有进度的异步字节编写器操作。

属性

Windows 要求

设备系列
Windows 10, version 1803 (在 10.0.17134.0 中引入)
API contract
Windows.Foundation.UniversalApiContract (在 v6.0 中引入)
应用功能
internetClientServer privateNetworkClientServer

适用于