Base.TSocket.Dispose C# (CSharp) Метод

Dispose() публичный Метод

public Dispose ( ) : void
Результат void
		public void Dispose()
		{
			if (this.socket == null)
			{
				return;
			}
			
			this.socket.Close();
			this.innArgs.Dispose();
			this.outArgs.Dispose();
			this.socket = null;
		}