- eventID
- The event ID for the event log which will be returned.
- includeDicomDataSet
- Decides whether to include the Leadtools.Dicom.DicomDataSet in the returned DicomLogEntry if exists, true to include the DicomDataSet; otherwise false.
| Visual Basic (Declaration) | |
|---|---|
Public Overridable Function FindDicomEventLog( _ ByVal eventID As Long, _ ByVal includeDicomDataSet As Boolean _ ) As DicomLogEntry | |
| Visual Basic (Usage) | Copy Code |
|---|---|
Dim instance As LoggingDBDataAccessAgent Dim eventID As Long Dim includeDicomDataSet As Boolean Dim value As DicomLogEntry value = instance.FindDicomEventLog(eventID, includeDicomDataSet) | |
| C# | |
|---|---|
public virtual DicomLogEntry FindDicomEventLog( long eventID, bool includeDicomDataSet ) | |
| C++/CLI | |
|---|---|
public: virtual 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 Leadtools.Dicom.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