PackerPackStringCore Method (IEnumerableChar, Encoding) |
Packs specified char stream to current stream with specified
Encoding.
Namespace: MsgPackAssembly: MsgPack (in MsgPack.dll) Version: 0.6.0
Syntax protected virtual void PackStringCore(
IEnumerable<char> value,
Encoding encoding
)
Protected Overridable Sub PackStringCore (
value As IEnumerable(Of Char),
encoding As Encoding
)
protected:
virtual void PackStringCore(
IEnumerable<wchar_t>^ value,
Encoding^ encoding
)
abstract PackStringCore :
value : IEnumerable<char> *
encoding : Encoding -> unit
override PackStringCore :
value : IEnumerable<char> *
encoding : Encoding -> unit
Parameters
- value
- Type: System.Collections.GenericIEnumerableChar
Source chars its size is not known. - encoding
- Type: System.TextEncoding
Encoding to be used.
See Also