private void InitializeReading()

in src/main/csharp/BytesMessage.cs [471:485]


		private void InitializeReading()
		{
			FailIfWriteOnlyBody();
			if(this.dataIn == null)
			{
				if(this.Content != null)
				{
					this.length = this.Content.Length;
				}

				// TODO - Add support for Message Compression.
				MemoryStream bytesIn = new MemoryStream(this.Content, false);
				dataIn = new EndianBinaryReader(bytesIn);
			}
		}