Application Class

Represents a Notification Services application.

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

Syntax

'Declaration
Public NotInheritable Class Application
    Inherits NamedSmoObject
public sealed class Application : NamedSmoObject
public ref class Application sealed : public NamedSmoObject
public final class Application extends NamedSmoObject
public final class Application extends NamedSmoObject

Hinweise

Use the Application class to define a Notification Services application. Use the Applications property of the Instance class to add an application to the instance's ApplicationCollection.

For information about building Notification Services applications, see Definieren von Notification Services-Anwendungen.

Inheritance Hierarchy

System.Object
   Microsoft.SqlServer.Management.Smo.SmoObjectBase
     Microsoft.SqlServer.Management.Smo.SqlSmoObject
       Microsoft.SqlServer.Management.Smo.NamedSmoObject
        Microsoft.SqlServer.Management.Nmo.Application

Beispiel

The following examples show the minimum application definition using Notification Services Management Objects (NMO):

Application emptyApp = 
    new Application(emptyInstance, applicationName);

Generator generator = new Generator(emptyApp, "Generator");
generator.SystemName = notificationServicesHost;
emptyApp.Generator = generator;
Console.WriteLine("Generator Added");

Distributor distributor = new Distributor(emptyApp, "Distributor");
distributor.SystemName = notificationServicesHost;
emptyApp.Distributors.Add(distributor);
Console.WriteLine("Distributor Added");
Dim emptyApp As Application = _
    New Application(emptyInstance, applicationName)

Dim generator As Generator = _
    New Generator(emptyApp, "Generator")
generator.SystemName = notificationServicesHost
emptyApp.Generator = generator
Console.WriteLine("Generator Added")

Dim distributor As Distributor = _
    New Distributor(emptyApp, "Distributor")
distributor.SystemName = notificationServicesHost
emptyApp.Distributors.Add(distributor)
Console.WriteLine("Distributor Added")

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

Application Members
Microsoft.SqlServer.Management.Nmo Namespace

Andere Ressourcen

Definieren von Notification Services-Anwendungen
Application Element (ADF)