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

SerObjectInfoCache() private method

private SerObjectInfoCache ( Type type ) : System.Threading
type System.Type
return System.Threading
        internal SerObjectInfoCache(Type type)
        {
            TypeInformation typeInformation = BinaryFormatter.GetTypeInformation(type);
            _fullTypeName = typeInformation.FullTypeName;
            _assemblyString = typeInformation.AssemblyString;
            _hasTypeForwardedFrom = typeInformation.HasTypeForwardedFrom;
        }
    }

Same methods

SerObjectInfoCache::SerObjectInfoCache ( string typeName, string assemblyName, bool hasTypeForwardedFrom ) : System.Threading
SerObjectInfoCache