System.Runtime.Serialization.Formatters.Binary.__BinaryParser.ReadObjectWithMapTyped C# (CSharp) Method

ReadObjectWithMapTyped() private method

private ReadObjectWithMapTyped ( BinaryHeaderEnum binaryHeaderEnum ) : void
binaryHeaderEnum BinaryHeaderEnum
return void
		internal void ReadObjectWithMapTyped(BinaryHeaderEnum binaryHeaderEnum)     
		{
			SerTrace.Log( this, "ReadObjectWithMapTyped");
			if (bowmt == null)
				bowmt = new BinaryObjectWithMapTyped(binaryHeaderEnum);
			else
				bowmt.binaryHeaderEnum = binaryHeaderEnum;
			bowmt.Read(this);
#if _DEBUG			
			bowmt.Dump();
#endif
			ReadObjectWithMapTyped(bowmt);
		}

Same methods

__BinaryParser::ReadObjectWithMapTyped ( BinaryObjectWithMapTyped record ) : void