EventLoader.LoadXml Method (String)
Submits the contents of an XML file to the application database.
네임스페이스: Microsoft.SqlServer.NotificationServices
어셈블리: Microsoft.SqlServer.NotificationServices (in microsoft.sqlserver.notificationservices.dll)
구문
‘선언
Public Function LoadXml ( _
eventDoc As String _
) As Integer
public int LoadXml (
string eventDoc
)
public:
int LoadXml (
String^ eventDoc
)
public int LoadXml (
String eventDoc
)
public function LoadXml (
eventDoc : String
) : int
매개 변수
- eventDoc
A string representing the path and name of the XML file that contains the event data to be loaded. This parameter cannot be null.
반환 값
An integer specifying how many events have been submitted in this LoadXml call.
예
The following examples show how to use the LoadXml method to submit event data from an XML file to the application database:
Dim instanceName As String = "MyInstanceName"
Dim applicationName As String = "MyApplicationName"
Dim eventClassName As String = "MyEventClassName"
Dim eventProviderName As String = "MyEventProviderName"
Dim eventSchema As String = "MySchemaFilePathAndName"
Dim myXmlFile As String = "MyXMLFilePathAndName"
'Create an NSInstance object.
Dim myInstance As New NSInstance(instanceName)
'Create an NSApplication object.
Dim myApplication As New NSApplication(myInstance, applicationName)
'Create an EventLoader object.
Dim myEventLoader As New EventLoader(myApplication, _
eventProviderName, eventClassName, eventSchema)
'Use the LoadXml method to load an XML document.
Dim eventsWritten As Integer = myEventLoader.LoadXml(myXmlFile)
string instanceName = "MyInstanceName";
string applicationName = "MyApplicationName";
string eventClassName = "MyEventClassName";
string eventProviderName = "MyEventProviderName";
string eventSchema = "MySchemaFilePathAndName";
string myXmlFile = "MyXMLFilePathAndName";
//Create an NSInstance object.
NSInstance myInstance = new NSInstance(instanceName);
//Create an NSApplication object.
NSApplication myApplication =
new NSApplication(myInstance, applicationName);
//Create an EventLoader object.
EventLoader myEventLoader =
new EventLoader(myApplication, eventProviderName,
eventClassName, eventSchema);
//Use the LoadXml method to load an XML document.
int eventsWritten = myEventLoader.LoadXml(myXmlFile);
스레드 보안
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 설치를 위한 하드웨어 및 소프트웨어 요구 사항을 참조하십시오.
참고 항목
참조
EventLoader Class
EventLoader Members
Microsoft.SqlServer.NotificationServices Namespace