Smartmobili.Cocoa.NSInputStream.Close C# (CSharp) Method

Close() public method

public Close ( ) : void
return void
        public override void Close()
        {
            if (_stream != null)
            {
                _stream.Close();
                _stream = null;
            }
        }