- eventId
- The event ID for the event log which will be returned.
- includeDicomDataSet
- Decides whether to include the DicomDataSet in the returned DicomLogEntry if exists, true to include the DicomDataSet; otherwise false.
| Visual Basic (Declaration) | |
|---|---|
Function FindDicomEventLog( _ ByVal eventId As Long, _ ByVal includeDicomDataSet As Boolean _ ) As DicomLogEntry | |
| Visual Basic (Usage) | Copy Code |
|---|---|
Dim instance As ILoggingDataAccessAgent Dim eventId As Long Dim includeDicomDataSet As Boolean Dim value As DicomLogEntry value = instance.FindDicomEventLog(eventId, includeDicomDataSet) | |
| C# | |
|---|---|
DicomLogEntry FindDicomEventLog( long eventId, bool includeDicomDataSet ) | |
| C++/CLI | |
|---|---|
DicomLogEntry^ FindDicomEventLog( int64 eventId, bool includeDicomDataSet ) | |
Parameters
- eventId
- The event ID for the event log which will be returned.
- includeDicomDataSet
- Decides whether to include the DicomDataSet in the returned DicomLogEntry if exists, true to include the DicomDataSet; otherwise false.
Return Value
A Leadtools.Logging.Medical.DicomLogEntry instance. Null if no match found.Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7
Copy Code