Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Initializes a ContentFormatter object with a notification class and name.
Namespace: Microsoft.SqlServer.Management.Nmo
Assembly : Microsoft.SqlServer.Smo (in microsoft.sqlserver.smo.dll)
Syntax
'Declaration
Public Sub New ( _
ncParent As NotificationClass, _
name As String _
)
public ContentFormatter (
NotificationClass ncParent,
string name
)
public:
ContentFormatter (
NotificationClass^ ncParent,
String^ name
)
public ContentFormatter (
NotificationClass ncParent,
String name
)
public function ContentFormatter (
ncParent : NotificationClass,
name : String
)
Parameter
- ncParent
The NotificationClass for this content formatter.
name
A String that specifies the logical name of the content formatter.You cannot change the name. You must instead remove the content formatter and then add a content formatter with the new name.
Beispiel
The following examples show how to create and define a content formatter object for the built-in XSLT content formatter:
// Add the XSLT content formatter to the notification class
ContentFormatter contentFormatter =
new ContentFormatter(flightNotifications, "XsltFormatter");
// Define content formatter arguments
ContentFormatterArgument contentFormatterArgument1 =
new ContentFormatterArgument(
contentFormatter, "XsltBaseDirectoryPath");
contentFormatterArgument1.Value = @"C:\NS\Full\XSLFiles";
ContentFormatterArgument contentFormatterArgument2 =
new ContentFormatterArgument(contentFormatter, "XsltFileName");
contentFormatterArgument2.Value = "NoOp.xslt";
// Add arguments to content formatter
contentFormatter.ContentFormatterArguments.Add(
contentFormatterArgument1);
contentFormatter.ContentFormatterArguments.Add(
contentFormatterArgument2);
// Assign the content formatter to the notification class
flightNotifications.ContentFormatter = contentFormatter;
' Add the XSLT content formatter to the notification class
Dim contentFormatter As ContentFormatter = _
New ContentFormatter(flightNotifications, "XsltFormatter")
' Define content formatter arguments
Dim contentFormatterArgument1 As ContentFormatterArgument = _
New ContentFormatterArgument(contentFormatter, _
"XsltBaseDirectoryPath")
contentFormatterArgument1.Value = "C:\NS\Full\XSLFiles"
Dim contentFormatterArgument2 As ContentFormatterArgument = _
New ContentFormatterArgument(contentFormatter, _
"XsltFileName")
contentFormatterArgument2.Value = "NoOp.xslt"
' Add arguments to content formatter
contentFormatter.ContentFormatterArguments.Add( _
contentFormatterArgument1)
contentFormatter.ContentFormatterArguments.Add( _
contentFormatterArgument2)
' Assign the content formatter to the notification class
flightNotifications.ContentFormatter = contentFormatter
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
ContentFormatter Class
ContentFormatter Members
Microsoft.SqlServer.Management.Nmo Namespace
Andere Ressourcen
Konfigurieren von Inhaltsformatierern
ContentFormatter Element (ADF)