File: Microsoft.Tools.Common\Microsoft\Activities\Presentation\Xaml\XamlTypeKind.cs
Project: ndp\cdf\src\NetFx40\Tools\System.Activities.Presentation.csproj (System.Activities.Presentation)
//----------------------------------------------------------------
// <copyright company="Microsoft Corporation">
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// </copyright>
//----------------------------------------------------------------
 
namespace Microsoft.Activities.Presentation.Xaml
{
    internal enum XamlTypeKind
    {
        Unknown, // I don't understand this type
        PartialSupported, // I understand this type if you would like to remove some new properties
        FullySupported, // I understand this type
    }
}