Type Method 型メソッド

writeJSONObject(_:to:options:error:)

Writes a given JSON object to a stream. 与えられたJSONオブジェクトをストリームに書き込みます。

Declaration 宣言

class func writeJSONObject(_ obj: Any, 
                        to stream: OutputStream, 
                   options opt: JSONSerialization.WritingOptions = [], 
                     error: NSErrorPointer) -> Int

Parameters パラメータ

obj

The object to write to stream. streamに書き込むことになるオブジェクト。

stream

The stream to which to write. それに対して書き込むことになるストリーム。

The stream should be open and configured. ストリームは、開かれて構成設定されるべきです。

options オプション

Options for writing the JSON data. JSONデータを書き込むためのオプション。

See JSONSerialization.WritingOptions for possible values. JSONSerialization.WritingOptionsを可能な値のために見てください。

Return Value 戻り値

The number of bytes written to the stream, or 0 if an error occurs. ストリームに書き込まれたバイト数、またはエラーが発生するならば0

See Also 参照

Creating JSON Data JSONデータを作成する