public int ReadInt32()

in src/main/csharp/StreamMessage.cs [215:267]


		public int ReadInt32()
		{
			InitializeReading();

			try
			{
				long startingPos = this.byteBuffer.Position;
				try
				{
					int type = this.dataIn.ReadByte();

					if(type == PrimitiveMap.INTEGER_TYPE)
					{
						return this.dataIn.ReadInt32();
					}
					else if(type == PrimitiveMap.SHORT_TYPE)
					{
						return this.dataIn.ReadInt16();
					}
					else if(type == PrimitiveMap.BYTE_TYPE)
					{
						return this.dataIn.ReadByte();
					}
					else if(type == PrimitiveMap.STRING_TYPE)
					{
						return Int32.Parse(this.dataIn.ReadString16());
					}
					else if(type == PrimitiveMap.NULL)
					{
						this.byteBuffer.Seek(startingPos, SeekOrigin.Begin);
						throw new NMSException("Cannot convert Null type to a int");
					}
					else
					{
						this.byteBuffer.Seek(startingPos, SeekOrigin.Begin);
						throw new MessageFormatException("Value is not a Int32 type.");
					}
				}
				catch(FormatException e)
				{
					this.byteBuffer.Seek(startingPos, SeekOrigin.Begin);
					throw NMSExceptionSupport.CreateMessageFormatException(e);
				}
			}
			catch(EndOfStreamException e)
			{
				throw NMSExceptionSupport.CreateMessageEOFException(e);
			}
			catch(IOException e)
			{
				throw NMSExceptionSupport.CreateMessageFormatException(e);
			}
		}