Freigeben über


Instance.Applications Property

Gets the collection of Notification Services applications hosted by the Notification Services instance.

Namespace: Microsoft.SqlServer.Management.Nmo
Assembly : Microsoft.SqlServer.Smo (in microsoft.sqlserver.smo.dll)

Syntax

'Declaration
Public ReadOnly Property Applications As ApplicationCollection
public ApplicationCollection Applications { get; }
public:
property ApplicationCollection^ Applications {
    ApplicationCollection^ get ();
}
/** @property */
public ApplicationCollection get_Applications ()
public function get Applications () : ApplicationCollection

Eigenschaftswert

The ApplicationCollection for the Instance.

Hinweise

Each Notification Services instance hosts one or more applications. Use the Applications property to get the collection of applications and then use methods of the ApplicationCollection class to add, remove, or get individual applications.

The constructor sets a default SchemaName of dbo.

Beispiel

The following example shows how to call a method that defines an application and then add that application using this property:

Application app = ConfigureApplication(myInstance);
myInstance.Applications.Add(app);
Dim app As Application = ConfigureApplication(myInstance)
myInstance.Applications.Add(app)

Threadsicherheit

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.

Plattformen

Entwicklungsplattformen

Eine Liste der unterstützten Plattformen finden Sie unterHardware- und Softwareanforderungen für die Installation von SQL Server 2005.

Zielplattforme

Eine Liste der unterstützten Plattformen finden Sie unterHardware- und Softwareanforderungen für die Installation von SQL Server 2005.

Siehe auch

Verweis

Instance Class
Instance Members
Microsoft.SqlServer.Management.Nmo Namespace

Andere Ressourcen

Konfigurieren von Instanzen von Notification Services
Applications Element (ICF)