MimeObjectFactory.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / wpf / src / Framework / MS / Internal / AppModel / MimeObjectFactory.cs / 1 / MimeObjectFactory.cs

                            //------------------------------------------------------------------------------ 
//
// 
//    Copyright (C) Microsoft Corporation.  All rights reserved.
//  
//
// Description: 
// Provides a set of static methods for transforming pairs of 
// mime type + stream into objects.
// 
// History:
//  11/11/2004: Erichar: Initial creation.
//
//----------------------------------------------------------------------------- 

using System; 
using System.Windows; 
using System.IO;
using System.Collections.Generic; 
using MS.Internal.Utility;
using System.Diagnostics;
using System.Globalization;
using System.Windows.Markup; 

namespace MS.Internal.AppModel 
{ 
    internal delegate object StreamToObjectFactoryDelegate(Stream s, Uri baseUri, bool canUseTopLevelBrowser, bool sandboxExternalContent, bool allowAsync, bool isJournalNavigation, out XamlReader asyncObjectConverter);
 
    internal static class MimeObjectFactory
    {

        //----------------------------------------------------- 
        //
        //  Internal Static Methods 
        // 
        //-----------------------------------------------------
 
        #region internal static methods

        // The delegate that we are calling is responsible for closing the stream
        internal static object GetObjectAndCloseStream(Stream s, ContentType contentType, Uri baseUri, bool canUseTopLevelBrowser, bool sandboxExternalContent, bool allowAsync, bool isJournalNavigation, out XamlReader asyncObjectConverter) 
        {
            object objToReturn = null; 
            asyncObjectConverter = null; 

            if (contentType != null) 
            {
                StreamToObjectFactoryDelegate d;
                if (_objectConverters.TryGetValue(contentType, out d))
                { 
                    objToReturn = d(s, baseUri, canUseTopLevelBrowser, sandboxExternalContent, allowAsync, isJournalNavigation, out asyncObjectConverter);
                } 
            } 

            return objToReturn; 
        }

        // The delegate registered here will be responsible for closing the stream passed to it.
        internal static void Register(ContentType contentType, StreamToObjectFactoryDelegate method) 
        {
            _objectConverters[contentType] = method; 
        } 

        #endregion 


        //------------------------------------------------------
        // 
        //  Private Members
        // 
        //----------------------------------------------------- 

        #region private members 

        private static readonly Dictionary _objectConverters = new Dictionary(5, new ContentType.WeakComparer());

        #endregion 

    } 
} 

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
//------------------------------------------------------------------------------ 
//
// 
//    Copyright (C) Microsoft Corporation.  All rights reserved.
//  
//
// Description: 
// Provides a set of static methods for transforming pairs of 
// mime type + stream into objects.
// 
// History:
//  11/11/2004: Erichar: Initial creation.
//
//----------------------------------------------------------------------------- 

using System; 
using System.Windows; 
using System.IO;
using System.Collections.Generic; 
using MS.Internal.Utility;
using System.Diagnostics;
using System.Globalization;
using System.Windows.Markup; 

namespace MS.Internal.AppModel 
{ 
    internal delegate object StreamToObjectFactoryDelegate(Stream s, Uri baseUri, bool canUseTopLevelBrowser, bool sandboxExternalContent, bool allowAsync, bool isJournalNavigation, out XamlReader asyncObjectConverter);
 
    internal static class MimeObjectFactory
    {

        //----------------------------------------------------- 
        //
        //  Internal Static Methods 
        // 
        //-----------------------------------------------------
 
        #region internal static methods

        // The delegate that we are calling is responsible for closing the stream
        internal static object GetObjectAndCloseStream(Stream s, ContentType contentType, Uri baseUri, bool canUseTopLevelBrowser, bool sandboxExternalContent, bool allowAsync, bool isJournalNavigation, out XamlReader asyncObjectConverter) 
        {
            object objToReturn = null; 
            asyncObjectConverter = null; 

            if (contentType != null) 
            {
                StreamToObjectFactoryDelegate d;
                if (_objectConverters.TryGetValue(contentType, out d))
                { 
                    objToReturn = d(s, baseUri, canUseTopLevelBrowser, sandboxExternalContent, allowAsync, isJournalNavigation, out asyncObjectConverter);
                } 
            } 

            return objToReturn; 
        }

        // The delegate registered here will be responsible for closing the stream passed to it.
        internal static void Register(ContentType contentType, StreamToObjectFactoryDelegate method) 
        {
            _objectConverters[contentType] = method; 
        } 

        #endregion 


        //------------------------------------------------------
        // 
        //  Private Members
        // 
        //----------------------------------------------------- 

        #region private members 

        private static readonly Dictionary _objectConverters = new Dictionary(5, new ContentType.WeakComparer());

        #endregion 

    } 
} 

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.

                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK