Example #1
0
 public static void SetTag(DicomDataSet dcm, DicomTagType seq,DicomTagType tag, object tagValue)
 {
    SetTag(dcm, (long)seq,(long)tag, tagValue);
 }
Example #2
0
 public static DicomExceptionCode SetTag(DicomDataSet dcm, DicomTagType tag, object tagValue, bool tree)
 {
     return SetTag(dcm, (long)tag, tagValue, tree);
 }
Example #3
0
 public static byte[] GetBinaryValues(DicomDataSet dcm, DicomTagType tag)
 {
    return GetBinaryValues(dcm, (long)tag);
 }
Example #4
0
 public static bool IsTagPresent(DicomDataSet dcm, DicomTagType tag)
 {
    return IsTagPresent(dcm, (long)tag);
 }
Example #5
0
 public static string GetStringValue(DicomDataSet dcm, DicomTagType tag)
 {
 return GetStringValue(dcm,(long)tag);
 }
Example #6
0
 public static StringCollection GetStringValues(DicomDataSet dcm, DicomTagType tag)
 {
    return GetStringValues(dcm, (long)tag);
 }
Example #7
0
 public static DicomExceptionCode InsertKeyElement(DicomDataSet dcmRsp, DicomDataSet dcmReq, DicomTagType tag)
 {
     return(InsertKeyElement(dcmRsp, dcmReq, (long)tag));
 }
Example #8
0
 public static string GetStringValue(DicomDataSet dcm, DicomTagType tag)
 {
     return(GetStringValue(dcm, (long)tag));
 }
Example #9
0
 public static void SetTag(DicomDataSet dcm, DicomTagType seq, DicomTagType tag, object tagValue)
 {
     SetTag(dcm, (long)seq, (long)tag, tagValue);
 }
Example #10
0
 public static DicomExceptionCode SetTag(DicomDataSet dcm, DicomTagType tag, object tagValue, bool tree)
 {
     return(SetTag(dcm, (long)tag, tagValue, tree));
 }
Example #11
0
 public static bool IsTagPresent(DicomDataSet dcm, DicomTagType tag)
 {
     return(IsTagPresent(dcm, (long)tag));
 }
Example #12
0
 public static byte[] GetBinaryValues(DicomDataSet dcm, DicomTagType tag)
 {
     return(GetBinaryValues(dcm, (long)tag));
 }
Example #13
0
 public static StringCollection GetStringValues(DicomDataSet dcm, DicomTagType tag)
 {
     return(GetStringValues(dcm, (long)tag));
 }
Example #14
0
 public static DicomExceptionCode InsertKeyElement(DicomDataSet dcmRsp, DicomDataSet dcmReq, DicomTagType tag)
 {
    return InsertKeyElement(dcmRsp, dcmReq, (long)tag);
 }
Example #15
0
 public static DicomExceptionCode SetKeyElement(DicomDataSet dcmRsp, DicomTagType tag, object tagValue, bool tree)
 {
     return(SetKeyElement(dcmRsp, (long)tag, tagValue, tree));
 }
Example #16
0
 public static DicomExceptionCode SetKeyElement(DicomDataSet dcmRsp, DicomTagType tag, object tagValue, bool tree)
 {
     return SetKeyElement(dcmRsp, (long)tag, tagValue, tree);
 }
Example #17
0
        /*
         * Inserts a UID if not already present
         */
#if (LTV15_CONFIG)
        public void InsertUID(DicomTagType nUID)
        {
            InsertUID((long)nUID);
        }