[Diese Dokumentation ist noch nicht fertig und kann sich bis zur entgültigen Version noch ändern.]
Initialisiert eine Message-Instanz.

Namespace: DynamicNode.Core
Assembly: DNCore (in DNCore.dll) Version: 1.4.4679.19807 (1.4.0.0)

Syntax

C#
public Message(
	TraceEventType typ,
	string source,
	int id,
	string text,
	string location,
	params Object[] data
)
Visual Basic
Public Sub New ( _
	typ As TraceEventType, _
	source As String, _
	id As Integer, _
	text As String, _
	location As String, _
	ParamArray data As Object() _
)
F#
new : 
        typ:TraceEventType * 
        source:string * 
        id:int * 
        text:string * 
        location:string * 
        data:Object[] -> Message

Parameters

typ
Type: System.Diagnostics..::..TraceEventType
Der Nachrichtentyp.
source
Type: System..::..String
Die Quelle der Nachricht.
id
Type: System..::..Int32
Die numerische Kennung.
text
Type: System..::..String
Der Nachrichtentext.
location
Type: System..::..String
Der Ort des Fehlers.
data
Type: array<System..::..Object>[]()[][]
Zusätzliche Objekte, welche die Nachricht näher beschreiben.

See Also