다음을 통해 공유


LocalizablePropertyCategoryAttribute 생성자

Initializes a new instance of the LocalizablePropertyCategoryAttribute class using the specified type and property name.

네임스페이스:  Microsoft.SqlServer.Dts.Runtime.Localization
어셈블리:  Microsoft.SqlServer.ManagedDTS.dll의 Microsoft.SqlServer.ManagedDTS

구문

‘선언
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.
            }
        }
    }