public int ReadBytes()

in src/main/csharp/StreamMessage.cs [118:129]


		public int ReadBytes(byte[] value)
		{
			try
			{
				return this.xmsStreamMessage.ReadBytes(value);
			}
			catch(Exception ex)
			{
				ExceptionUtil.WrapAndThrowNMSException(ex);
				return 0;
			}
		}