NotificationClassEnumeration.Item Property (String)
Gets a reference to a notification class using the notification class name.
Пространство имен: Microsoft.SqlServer.NotificationServices
Сборка: Microsoft.SqlServer.NotificationServices (in microsoft.sqlserver.notificationservices.dll)
Синтаксис
'Декларация
Public ReadOnly Default Property Item ( _
notificationClassName As String _
) As NotificationClass
public NotificationClass this [
string notificationClassName
] { get; }
public:
virtual property NotificationClass^ default [String^] {
NotificationClass^ get (String^ notificationClassName) sealed;
}
/** @property */
public final NotificationClass get_Item (String notificationClassName)
Параметры
- notificationClassName
The name of the notification class that you want returned
Значение свойства
The specified NotificationClass.
Пример
Dim instanceName As String = "MyInstanceName"
Dim applicationName As String = "MyApplicationName"
Dim notificationClassName As String = "MyNotificationClassName"
'Create an NSInstance object.
Dim myInstance As New NSInstance(instanceName)
'Create an NSApplication object.
Dim myApplication As New NSApplication(myInstance, applicationName)
'Create a NotificationClassEnumeration object.
Dim myNotificationClassEnumeration As _
New NotificationClassEnumeration(myApplication)
'Use the Item property to return a NotificationClass object.
Dim myNotificationClass As NotificationClass = _
myNotificationClassEnumeration(notificationClassName)
string instanceName = "MyInstanceName";
string applicationName = "MyApplicationName";
string notificationClassName = "MyNotificationClassName";
//Create an NSInstance object.
NSInstance myInstance = new NSInstance(instanceName);
//Create an NSApplication object.
NSApplication myApplication =
new NSApplication(myInstance, applicationName);
//Create a NotificationClassEnumeration object.
NotificationClassEnumeration myNotificationClassEnumeration =
new NotificationClassEnumeration(myApplication);
//Use the Item property to return a NotificationClass object.
NotificationClass myNotificationClass =
myNotificationClassEnumeration[notificationClassName];
Синхронизация потоков
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.
Платформы
Платформы разработки
Список поддерживаемых платформ см. в разделе Hardware and Software Requirements for Installing SQL Server 2005.
Целевые платформы
Список поддерживаемых платформ см. в разделе Hardware and Software Requirements for Installing SQL Server 2005.
См. также
Справочник
NotificationClassEnumeration Class
NotificationClassEnumeration Members
Microsoft.SqlServer.NotificationServices Namespace