[reflection] Coop handles icalls in System.Reflection and System.RuntimeTypeHandle...
[mono.git] / mcs / class / referencesource / System.Activities.Presentation / Microsoft.Tools.Common / Microsoft / Activities / Presentation / Xaml / NameSpaces.cs
1 // <copyright>
2 //   Copyright (c) Microsoft Corporation.  All rights reserved.
3 // </copyright>
4
5 internal static class NameSpaces
6 {
7     public const string Mc = "http://schemas.openxmlformats.org/markup-compatibility/2006";
8     public const string Design = "http://schemas.microsoft.com/netfx/2009/xaml/activities/presentation";
9     public const string Design2010 = "http://schemas.microsoft.com/netfx/2010/xaml/activities/presentation";
10     public const string Toolbox = "http://schemas.microsoft.com/netfx/2010/xaml/activities/presentation/toolbox";
11     public const string Activities = "http://schemas.microsoft.com/netfx/2009/xaml/activities";
12     public const string DebugSymbol = "http://schemas.microsoft.com/netfx/2010/xaml/activities/debugger";
13     public const string DesignPrefix = "sap";
14     public const string Design2010Prefix = "sap2010";
15     public const string McPrefix = "mc";
16     public const string DebugSymbolPrefix = "sads";
17
18     public static bool ShouldIgnore(string ns)
19     {
20         return ns == Design2010 || ns == DebugSymbol || ns == Design;
21     }
22 }