LocalizablePropertyCategoryAttribute 构造函数
Initializes a new instance of the LocalizablePropertyCategoryAttribute class using the specified type and property name.
命名空间: Microsoft.SqlServer.Dts.Runtime.Localization
程序集: Microsoft.SqlServer.ManagedDTS(在 Microsoft.SqlServer.ManagedDTS.dll 中)
语法
声明
Public Sub New ( _
type As Type, _
propertyName As String _
)
用法
Dim type As Type
Dim propertyName As String
Dim instance As New LocalizablePropertyCategoryAttribute(type, propertyName)
public LocalizablePropertyCategoryAttribute(
Type type,
string propertyName
)
public:
LocalizablePropertyCategoryAttribute(
Type^ type,
String^ propertyName
)
new :
type:Type *
propertyName:string -> LocalizablePropertyCategoryAttribute
public function LocalizablePropertyCategoryAttribute(
type : Type,
propertyName : String
)
参数
- type
类型:System.Type
The type name that contains the property referenced by propertyName.
- propertyName
类型:System.String
The name of the property on the type that returns the localized property category.
注释
The property must be static, and return a String.
示例
The following code example shows a class that implements this attribute.
public class MyTask : Task
{
[LocalizablePropertyCategory (typeof(LocalizedStrings),"MyGeneralCategory")]
public string MyProperty
{ get; set; }
}
internal class LocalizedStrings
{
public static string MyGeneralCategory
{
get
{
// Return the localized string.
}
}
}