HttpContent.SerializeToStream 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
当在派生类中被重写时,将 HTTP 内容序列化为流。 否则,将引发 NotSupportedException。
protected:
virtual void SerializeToStream(System::IO::Stream ^ stream, System::Net::TransportContext ^ context, System::Threading::CancellationToken cancellationToken);
protected virtual void SerializeToStream (System.IO.Stream stream, System.Net.TransportContext? context, System.Threading.CancellationToken cancellationToken);
abstract member SerializeToStream : System.IO.Stream * System.Net.TransportContext * System.Threading.CancellationToken -> unit
override this.SerializeToStream : System.IO.Stream * System.Net.TransportContext * System.Threading.CancellationToken -> unit
Protected Overridable Sub SerializeToStream (stream As Stream, context As TransportContext, cancellationToken As CancellationToken)
参数
- stream
- Stream
目标流。
- context
- TransportContext
有关传输的信息(例如通道绑定令牌)。 此参数可以为 null
。
- cancellationToken
- CancellationToken
用于取消操作的取消令牌。
例外
此方法不会在派生类中被重写。
取消令牌已取消。 此异常存储在返回的任务中。