Пример #1
0
		public bool Close()
		{
			bool result;
			if (result = (this.BackendWrite("0\r\n\r\n") && (result = this.Wrapped || this.backend.Close())))
				this.backend = null;
			return result;
		}
Пример #2
0
		ChunkedBlockOutDevice(IOutDevice backend)
		{
			this.backend = backend;
		}