Instance Method インスタンスメソッド

getInputStream:outputStream:

Creates a pair of input and output streams for the receiver and returns a Boolean value that indicates whether they were retrieved successfully. レシーバに対する入力と出力ストレームのペアを作成して、それらがうまく取ってこられたかどうかを指し示すブール値を返します。

Declaration 宣言

- (BOOL)getInputStream:(out NSInputStream * _Nullable *)inputStream 
          outputStream:(out NSOutputStream * _Nullable *)outputStream;

Parameters パラメータ

inputStream

Upon return, the input stream for the receiver. Pass NULL if you do not need this stream. 戻りでは、レシーバに対する入力ストリーム。NULLを渡してください、もしあなたがこのストリームを必要としないならば。

outputStream

Upon return, the output stream for the receiver. Pass NULL if you do not need this stream. 戻りでは、レシーバに対する出力ストリーム。NULLを渡してください、もしあなたがこのストリームを必要としないならば。

Return Value 戻り値

YES if the streams are created successfully, otherwise NO. YES、もしストリームがうまく作成されるならば、そうでなければNO

Discussion 議論

After this method is called, no delegate callbacks are called by the receiver. このメソッドが呼び出された後、どんな委任先コールバックもレシーバによって呼び出されることはありません。

See Also 参照

Configuring Network Services ネットワークサービスを構成設定する