LEADTOOLS Medical (Leadtools.Medical.Workstation.DataAccessLayer assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.30
PrepareIsSeriesVolumeExistsCommand Method
See Also 
Leadtools.Medical.Workstation.DataAccessLayer Namespace > WorkstationSqlDataAccessAgent Class : PrepareIsSeriesVolumeExistsCommand Method




command
Type: System.Data.Common.DbCommand The database command to be initialized to execute the query which decides whether a 3D volume exists.
seriesInstanceUID
Type: System.String The Series Instance UID of the series which the 3D volume was generated from.
command
Type: System.Data.Common.DbCommand The database command to be initialized to execute the query which decides whether a 3D volume exists.
seriesInstanceUID
Type: System.String The Series Instance UID of the series which the 3D volume was generated from.
Initializes a System.Data.Common.DbCommand object which returns a scalar value if a 3D volume exists for the given series.

Syntax

Visual Basic (Declaration) 
Overrides Protected Sub PrepareIsSeriesVolumeExistsCommand( _
   ByVal command As DbCommand, _
   ByVal seriesInstanceUID As String _
) 
Visual Basic (Usage)Copy Code
Dim instance As WorkstationSqlDataAccessAgent
Dim command As DbCommand
Dim seriesInstanceUID As String
 
instance.PrepareIsSeriesVolumeExistsCommand(command, seriesInstanceUID)
C# 
protected override void PrepareIsSeriesVolumeExistsCommand( 
   DbCommand command,
   string seriesInstanceUID
)
Managed Extensions for C++ 
protected: void PrepareIsSeriesVolumeExistsCommand( 
   DbCommand* command,
   string* seriesInstanceUID
) override 
C++/CLI 
protected:
void PrepareIsSeriesVolumeExistsCommand( 
   DbCommand^ command,
   String^ seriesInstanceUID
) override 

Parameters

command
Type: System.Data.Common.DbCommand The database command to be initialized to execute the query which decides whether a 3D volume exists.
seriesInstanceUID
Type: System.String The Series Instance UID of the series which the 3D volume was generated from.

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7

See Also