File: System.Activities.Presentation\System\Activities\Presentation\Converters\SearchableStringConverterAttribute.cs
Project: ndp\cdf\src\NetFx40\Tools\System.Activities.Presentation.csproj (System.Activities.Presentation)
//----------------------------------------------------------------
// Copyright (c) Microsoft Corporation.  All rights reserved.
//----------------------------------------------------------------
 
namespace System.Activities.Presentation.Converters
{
    using System;
 
    internal sealed class SearchableStringConverterAttribute : Attribute
    {
        string converterTypeName;
        public SearchableStringConverterAttribute(Type type)
        {
            this.converterTypeName = type.AssemblyQualifiedName;
        }
        public string ConverterTypeName
        {
            get
            {
                return this.converterTypeName;
            }
        }
    }
}