Leadtools.Dicom Namespace > DicomPrintScu Class : CreateFilmSession Method |
public void CreateFilmSession( DicomFilmSessionParameters parameters, bool colorPrintManagement )
'Declaration Public Sub CreateFilmSession( _ ByVal parameters As DicomFilmSessionParameters, _ ByVal colorPrintManagement As Boolean _ )
'Usage Dim instance As DicomPrintScu Dim parameters As DicomFilmSessionParameters Dim colorPrintManagement As Boolean instance.CreateFilmSession(parameters, colorPrintManagement)
public void CreateFilmSession( DicomFilmSessionParameters parameters, bool colorPrintManagement )
function Leadtools.Dicom.DicomPrintScu.CreateFilmSession( parameters , colorPrintManagement )
public: void CreateFilmSession( DicomFilmSessionParameters^ parameters, bool colorPrintManagement )
Exception Type | Condition |
---|---|
DicomExceptionCode.PrintSCUFailureStatus | The response of the Print SCP specifies a Failure status code; no Instance was created. |
DicomExceptionCode.PrintSCUClassNotSupported | Neither the Basic Grayscale Print Management Meta SOP Class nor the Basic Color Print Management Meta SOP Class is supported on the Association. |
Once a Film Session is created, the method CreateFilmBox can then be used to create one or more Film Boxes in the new Film Session. Notice that only one Film Session can be handled on the Association at any time.
The method will not return until it receives the response of the Print SCP, or an error occurs. The method GetLastOperationStatus can be used to obtain the status code specified in the response of the Print SCP. If the method CreateFilmSession is successful, the Film Session was created successfully, with either a Success or Warning status code in the response of the Print SCP.
Having the Film Session created, the method GetFilmSessionInstanceUid can be used to obtain its SOP Instance UID. Also, the methods UpdateFilmSession, PrintFilmSession, and DeleteFilmSession can be used to update, print, and delete the Film Session, respectively.
The parameter parameters specifies the parameters to be used when creating the Film Session. In the passed object, if a string property is a null reference (Nothing in Visual Basic), then the corresponding Attribute will not be included in the request to the Print SCP. Similarly, if a numeric property is negative, the corresponding Attribute will not be included in the request. If parameters is set to a null reference, then the request will be sent without specifying any parameters.
All the rest of the basic Print Management methods will adopt the Meta SOP Class of the created Basic Film Session SOP Instance.