Base.PacketParser.GetPacket C# (CSharp) Method

GetPacket() public method

public GetPacket ( ) : byte[]
return byte[]
		public byte[] GetPacket()
		{
			this.Parse();
			if (!this.isOK)
			{
				return null;
			}
			byte[] result = this.packet;
			this.isOK = false;
			return result;
		}
	}