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

MetadataUpdateStream() private method

private 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
parentStream Stream
cache RequestCache
key string
expiresGMT System.DateTime
lastModifiedGMT System.DateTime
lastSynchronizedGMT System.DateTime
maxStale System.TimeSpan
entryMetadata System.Collections.Specialized.StringCollection
systemMetadata System.Collections.Specialized.StringCollection
isStrictCacheErrors bool
return System
        internal MetadataUpdateStream(  Stream parentStream,
                                        RequestCache cache,
                                        string      key,
                                        DateTime    expiresGMT,
                                        DateTime    lastModifiedGMT,
                                        DateTime    lastSynchronizedGMT,
                                        TimeSpan    maxStale,
                                        StringCollection entryMetadata,
                                        StringCollection systemMetadata,
                                        bool        isStrictCacheErrors): base()
        {
            if (parentStream == null)
                throw new ArgumentNullException("parentStream");

            m_ParentStream      = parentStream;
            m_Cache             = cache;
            m_Key               = key;
            m_Expires           = expiresGMT;
            m_LastModified      = lastModifiedGMT;
            m_LastSynchronized  = lastSynchronizedGMT;
            m_MaxStale          = maxStale;
            m_EntryMetadata     = entryMetadata;
            m_SystemMetadata    = systemMetadata;
            m_IsStrictCacheErrors = isStrictCacheErrors;
        }

Same methods

MetadataUpdateStream::MetadataUpdateStream ( Stream parentStream, RequestCache cache, string key, bool isStrictCacheErrors ) : System