DicomAddInAttribute Class

Summary
Specifies information about the DICOM add-in.
Syntax
C#
VB
C++
[AttributeUsageAttribute(System.AttributeTargets, AllowMultiple=false)] 
public class DicomAddInAttribute : Attribute 
  
<AttributeUsageAttribute(ValidOn=AttributeTargets.Class,  
   AllowMultiple=False,  
   Inherited=True)> 
Public Class DicomAddInAttribute  
   Inherits System.Attribute 
   Implements System.Runtime.InteropServices._Attribute  
[AttributeUsageAttribute(ValidOn=AttributeTargets.Class,  
   AllowMultiple=false,  
   Inherited=true)] 
public ref class DicomAddInAttribute : public System.Attribute, System.Runtime.InteropServices._Attribute   
Example

Shows attribute usage on an interface.

C#
VB
using Leadtools.Dicom.AddIn.Attributes; 
using Leadtools.Dicom.AddIn.Interfaces; 
using Leadtools.Dicom; 
using Leadtools.Dicom.AddIn; 
 
 
 
[DicomAddInAttribute("Storage Commit AddIn", "1.0.0.0", Description = "Implements Storage Commitment", Author = "")] 
public class StorageCommitAddin : IProcessNAction 
{ 
   #region IProcessNAction Members 
 
   [PresentationContext(DicomUidType.StorageCommitmentPushModelClass, DicomUidType.ImplicitVRLittleEndian)] 
   public DicomCommandStatusType OnNAction(DicomClient Client, byte PresentationId, int MessageId, string AffectedClass, string Instance, int Action, DicomDataSet Request, DicomDataSet Response) 
   { 
      return DicomCommandStatusType.Success; 
   } 
 
   #endregion 
 
   #region IProcessBreak Members 
 
   public void Break(BreakType type) 
   { 
   } 
 
   #endregion 
} 
Imports Leadtools.Dicom.AddIn.Attributes 
Imports Leadtools.Dicom.AddIn.Interfaces 
Imports Leadtools.Dicom 
Imports Leadtools.Dicom.AddIn 
 
 
<DicomAddInAttribute("Storage Commit AddIn", "1.0.0.0", Description:="Implements Storage Commitment", Author:="")> 
Public Class StorageCommitAddin : Implements IProcessNAction 
 
 
   <PresentationContext(DicomUidType.StorageCommitmentPushModelClass, DicomUidType.ImplicitVRLittleEndian)> 
   Public Function OnNAction(ByVal Client As DicomClient, ByVal PresentationId As Byte, ByVal MessageId As Integer, ByVal AffectedClass As String, 
                       ByVal Instance As String, ByVal Action As Integer, ByVal Request As DicomDataSet, ByVal Response As DicomDataSet) As _ 
                    DicomCommandStatusType Implements IProcessNAction.OnNAction 
      Return DicomCommandStatusType.Success 
   End Function 
 
 
 
 
 
   Public Sub Break(ByVal type As BreakType) Implements IProcessNAction.Break 
   End Sub 
 
 
End Class 
Requirements

Target Platforms

Help Version 21.0.2021.7.2
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2021 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Dicom.AddIn Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2021 LEAD Technologies, Inc. All Rights Reserved.