System.Net.Cache.MetadataUpdateStream.MetadataUpdateStream C# (CSharp) Method

MetadataUpdateStream() private method

private MetadataUpdateStream ( Stream parentStream, RequestCache cache, string key, bool isStrictCacheErrors ) : System
parentStream Stream
cache RequestCache
key string
isStrictCacheErrors bool
return System
        private MetadataUpdateStream( Stream parentStream, RequestCache cache, string key, bool isStrictCacheErrors):base() {
            if (parentStream == null)
                throw new ArgumentNullException("parentStream");

            m_ParentStream      = parentStream;
            m_Cache             = cache;
            m_Key               = key;
            m_CacheDestroy      = true;
            m_IsStrictCacheErrors = isStrictCacheErrors;
        }
        //

Same methods

MetadataUpdateStream::MetadataUpdateStream ( Stream parentStream, RequestCache cache, string key, System.DateTime expiresGMT, System.DateTime lastModifiedGMT, System.DateTime lastSynchronizedGMT, System.TimeSpan maxStale, StringCollection entryMetadata, StringCollection systemMetadata, bool isStrictCacheErrors ) : System