Apache.NMS.Util.PrimitiveMap.Unmarshal C# (CSharp) Method

Unmarshal() public static method

Unmarshals a PrimitiveMap directly from a Stream object. This allows for clients to read PrimitiveMaps from Compressed or other wise encoded streams without this class needing to know about it.
public static Unmarshal ( Stream source ) : PrimitiveMap
source Stream /// A ///
return PrimitiveMap
        public static PrimitiveMap Unmarshal(Stream source)
        {
            PrimitiveMap answer = new PrimitiveMap();
            answer.dictionary = UnmarshalPrimitiveMap(source);
            return answer;
        }

Same methods

PrimitiveMap::Unmarshal ( byte data ) : PrimitiveMap