다음을 통해 공유


SubscriberLocaleEnumeration.Item Property

Returns a SubscriberLocale, which represents a valid subscriber locale.

네임스페이스: Microsoft.SqlServer.NotificationServices
어셈블리: Microsoft.SqlServer.NotificationServices (in microsoft.sqlserver.notificationservices.dll)

구문

‘선언
Public ReadOnly Default Property Item ( _
    locale As String _
) As SubscriberLocale
public SubscriberLocale this [
    string locale
] { get; }
public:
virtual property SubscriberLocale^ default [String^] {
    SubscriberLocale^ get (String^ locale) sealed;
}
/** @property */
public final SubscriberLocale get_Item (String locale)

매개 변수

  • locale
    The 10-character locale string of the locale that you want returned.

속성 값

A SubscriberLocale, which represents a locale.

The following examples show how to use the Item property to return a SubscriberLocale:

Dim instanceName As String = "MyInstanceName"
Dim locale As String = "en-US"

'Create an NSInstance object.
Dim myInstance As New NSInstance(instanceName)

'Create a SubscriberLocaleEnumeration object.
Dim mySubscriberLocaleEnumeration As _
    New SubscriberLocaleEnumeration(myInstance)

'Use the Item property to return a SubscriberLocale object.
Dim mySubscriberLocale As SubscriberLocale = _
    mySubscriberLocaleEnumeration(locale)
string instanceName = "MyInstanceName";
string locale = "en-US";

//Create an NSInstance object.
NSInstance myInstance = new NSInstance(instanceName);

//Create a SubscriberLocaleEnumeration object.
SubscriberLocaleEnumeration mySubscriberLocaleEnumeration = 
    new SubscriberLocaleEnumeration(myInstance);

//Use the Item property to return a SubscriberLocale object.
SubscriberLocale mySubscriberLocale = 
    mySubscriberLocaleEnumeration[locale];

스레드 보안

Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

플랫폼

개발 플랫폼

지원되는 플랫폼 목록은 SQL Server 2005 설치를 위한 하드웨어 및 소프트웨어 요구 사항을 참조하십시오.

대상 플랫폼

지원되는 플랫폼 목록은 SQL Server 2005 설치를 위한 하드웨어 및 소프트웨어 요구 사항을 참조하십시오.

참고 항목

참조

SubscriberLocaleEnumeration Class
SubscriberLocaleEnumeration Members
Microsoft.SqlServer.NotificationServices Namespace