Class DicomCStoreApplicationInfo
Implementation of the Storage Service Application Information field for the SOP Class Extended Negotiation Sub-item. See http://dicom.nema.org/medical/dicom/current/output/chtml/part04/sect_B.3.html#sect_B.3.1 for details on the Service Class Application Information field for C-STORE SOP Classes.
Implements
System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<System.Byte, System.Byte>>
System.Collections.IEnumerable
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: FellowOakDicom.Network
Assembly: fo-dicom.core.dll
Syntax
public class DicomCStoreApplicationInfo : DicomServiceApplicationInfo, IEnumerable<KeyValuePair<byte, byte>>, IEnumerable
Constructors
DicomCStoreApplicationInfo()
Declaration
public DicomCStoreApplicationInfo()
DicomCStoreApplicationInfo(DicomLevelOfSupport, DicomLevelOfDigitalSignatureSupport, DicomElementCoercion)
Initializes an instance of the DicomCStoreApplicationInfo class.
Declaration
public DicomCStoreApplicationInfo(DicomLevelOfSupport levelOfSupport, DicomLevelOfDigitalSignatureSupport levelOfDigitalSignatureSupport, DicomElementCoercion elementCoercion)
Parameters
Type | Name | Description |
---|---|---|
DicomLevelOfSupport | levelOfSupport | Level of support flag. |
DicomLevelOfDigitalSignatureSupport | levelOfDigitalSignatureSupport | Level of Digital Signature support flag. |
DicomElementCoercion | elementCoercion | Element Coercion flag. |
DicomCStoreApplicationInfo(Byte[])
Initializes an instance of the DicomCStoreApplicationInfo class.
Declaration
public DicomCStoreApplicationInfo(byte[] rawApplicationInfo)
Parameters
Type | Name | Description |
---|---|---|
System.Byte[] | rawApplicationInfo | The raw application info byte array. |
Properties
ElementCoercion
Gets or sets the Element Coercion flag.
Declaration
public DicomElementCoercion ElementCoercion { get; set; }
Property Value
Type | Description |
---|---|
DicomElementCoercion |
LevelOfDigitalSignatureSupport
Gets or sets the Level of Digital Signature support flag.
Declaration
public DicomLevelOfDigitalSignatureSupport LevelOfDigitalSignatureSupport { get; set; }
Property Value
Type | Description |
---|---|
DicomLevelOfDigitalSignatureSupport |
LevelOfSupport
Gets or sets the Level of support flag.
Declaration
public DicomLevelOfSupport LevelOfSupport { get; set; }
Property Value
Type | Description |
---|---|
DicomLevelOfSupport |
Implements
System.Collections.Generic.IEnumerable<T>
System.Collections.IEnumerable