Table of Contents

Class TextEncoderStream

Namespace
CSharpToJavaScript.APIs.JS
Assembly
CSharpToJavaScript.dll

The TextEncoderStream interface of the 'Encoding API' converts a stream of strings into bytes in the UTF-8 encoding. It is the streaming equivalent of TextEncoder.
It implements the same shape as a TransformStream, allowing it to be used in PipeThrough(ReadableWritablePair, StreamPipeOptions) and similar methods.

[Value("TextEncoderStream")]
public class TextEncoderStream : TextEncoderCommon, GenericTransformStream
Inheritance
TextEncoderStream
Implements
Inherited Members

Remarks

Constructors

TextEncoderStream()

The TextEncoderStream() constructor creates a new TextEncoderStream object which is used to convert a stream of strings into bytes using UTF-8 encoding.

public TextEncoderStream()

Remarks