EventLoader.LoadXml Method (Stream)
Stream オブジェクトの内容をアプリケーション データベースに送信します。
名前空間: Microsoft.SqlServer.NotificationServices
アセンブリ: Microsoft.SqlServer.NotificationServices (microsoft.sqlserver.notificationservices.dll 内)
構文
'宣言
Public Function LoadXml ( _
eventStream As Stream _
) As Integer
public int LoadXml (
Stream eventStream
)
public:
int LoadXml (
Stream^ eventStream
)
public int LoadXml (
Stream eventStream
)
public function LoadXml (
eventStream : Stream
) : int
パラメータ
- eventStream
読み込む XML イベント データを表す Stream オブジェクトです。このパラメータには NULL を指定できません。
戻り値
この LoadXml 呼び出しによって送信されたイベントの数を表す整数値です。
解説
このメソッドでは、Stream クラスから継承するすべてのクラスのオブジェクトを、入力パラメータとして指定できます。ただし、継承するすべてのクラスについて適用できるわけではありません。このメソッドと互換性のあるクラスは次のとおりです。
Stream クラス自体は抽象クラスです。つまり、直接使用することはできません。このクラスは基本クラスであり、他のクラスはこのクラスから派生します。
使用例
LoadXml メソッドを使用して、XML イベント データを Stream オブジェクトからアプリケーション データベースに送信する例を次に示します。
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 myStream As New System.IO.FileStream(myXmlFile, _
System.IO.FileMode.Open)
Dim eventsWritten As Integer = myEventLoader.LoadXml(myStream)
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.
System.IO.FileStream myStream =
new System.IO.FileStream(myXmlFile,
System.IO.FileMode.Open);
int eventsWritten = myEventLoader.LoadXml(myStream);
スレッド セーフ
この型の public static (Microsoft Visual Basic では共有 ) メンバは、スレッド セーフです。インスタンス メンバの場合は、スレッド セーフであるとは限りません。
プラットフォーム
開発プラットフォーム
サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。
対象プラットフォーム
サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。
参照
関連項目
EventLoader Class
EventLoader Members
Microsoft.SqlServer.NotificationServices Namespace