[reflection] Coop handles icalls in System.Reflection and System.RuntimeTypeHandle...
[mono.git] / mcs / class / referencesource / System.Activities.Presentation / System.Activities.Presentation / System / Activities / Presentation / Converters / SearchableStringConverterAttribute.cs
1 //----------------------------------------------------------------
2 // Copyright (c) Microsoft Corporation.  All rights reserved.
3 //----------------------------------------------------------------
4
5 namespace System.Activities.Presentation.Converters
6 {
7     using System;
8
9     internal sealed class SearchableStringConverterAttribute : Attribute
10     {
11         string converterTypeName;
12         public SearchableStringConverterAttribute(Type type)
13         {
14             this.converterTypeName = type.AssemblyQualifiedName;
15         }
16         public string ConverterTypeName
17         {
18             get
19             {
20                 return this.converterTypeName;
21             }
22         }
23     }
24 }