File: Microsoft.Tools.Common\Microsoft\Activities\Presentation\Xaml\XamlTypeWithExplicitNamespace.cs
Project: ndp\cdf\src\NetFx40\Tools\System.Activities.Presentation.csproj (System.Activities.Presentation)
// <copyright>
//   Copyright (c) Microsoft Corporation.  All rights reserved.
// </copyright>
 
namespace Microsoft.Activities.Presentation.Xaml
{
    using System.Collections.Generic;
    using System.Xaml;
 
    class XamlTypeWithExplicitNamespace : XamlType
    {
        List<string> explicitNamespaces;
 
        public XamlTypeWithExplicitNamespace(XamlType wrapped, IEnumerable<string> explicitNamespaces) :
            base(wrapped.UnderlyingType, wrapped.SchemaContext)
        {
            this.explicitNamespaces = new List<string>(explicitNamespaces);
        }
 
        public override IList<string> GetXamlNamespaces()
        {
            return this.explicitNamespaces;
        }
    }
}