Performs a C-STORE operation initiated by a C-MOVE request.
            
            
            
            
            
            
            
        
            
            'Declaration
 
Function ProcessCMoveStoreSubOperation( _
   ByVal  As DicomScp, _
   ByVal  As DicomDataSet, _
   ByVal  As String, _
   ByVal remaining As Integer, _
   ByVal  As Integer, _
   ByVal  As Integer, _
   ByVal  As Integer _
) As DicomCommandStatusType
             
        
            
            'Usage
 
Dim instance As ICMoveClientSessionProxy
Dim scp As DicomScp
Dim dataSet As DicomDataSet
Dim referencedFilePath As String
Dim remaining As Integer
Dim completed As Integer
Dim failed As Integer
Dim warning As Integer
Dim value As DicomCommandStatusType
 
value = instance.ProcessCMoveStoreSubOperation(scp, dataSet, referencedFilePath, remaining, completed, failed, warning)
             
        
            
        
            
        
            
        
             
        
            Parameters
- scp
 
- The server to store into.
 - dataSet
 
- The Leadtools.Dicom.DicomDataSet to be stored.
 - referencedFilePath
 
- The path for the 
 - remaining
 
- the number of remaining C-STORE sub-operations
 - completed
 
- The number of C-STORE sub-operations which have completed successfully.
 - failed
 
- The number of C-STORE sub-operations which have failed.
 - warning
 
- The number of C-STORE sub-operation which generated Warning responses.
 
            
            Return Value
The status of the store operation.