Show / Hide Table of Contents
View Source

Class Tag

A small helper class help work set and get the tag ids for DICOM elements.

Inheritance
System.Object
Tag
Inherited Members
System.Object.Equals(System.Object, System.Object)
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace:EvilDICOM.Core.Element
Assembly:EvilDICOM.dll
Syntax
public class Tag

Constructors

View Source

Tag(String)

Declaration
public Tag(string completeID)
Parameters
Type Name Description
System.String completeID
View Source

Tag(String, String)

Declaration
public Tag(string group, string element)
Parameters
Type Name Description
System.String group
System.String element

Properties

View Source

CompleteID

The complete id, containing both the group id GGGG and the element id EEEE as GGGGEEEE

Declaration
public string CompleteID { get; set; }
Property Value
Type Description
System.String
View Source

Element

The element id of the element

Declaration
public string Element { get; }
Property Value
Type Description
System.String
View Source

Group

The group id of the element

Declaration
public string Group { get; }
Property Value
Type Description
System.String

Methods

View Source

Equals(Object)

Declaration
public override bool Equals(object obj)
Parameters
Type Name Description
System.Object obj
Returns
Type Description
System.Boolean
Overrides
System.Object.Equals(System.Object)
View Source

GetHashCode()

Declaration
public override int GetHashCode()
Returns
Type Description
System.Int32
Overrides
System.Object.GetHashCode()
View Source

IsPrivate()

Declaration
public bool IsPrivate()
Returns
Type Description
System.Boolean
View Source

ToString()

Declaration
public override string ToString()
Returns
Type Description
System.String
Overrides
System.Object.ToString()

Operators

View Source

Equality(Tag, Tag)

Declaration
public static bool operator ==(Tag t1, Tag t2)
Parameters
Type Name Description
Tag t1
Tag t2
Returns
Type Description
System.Boolean
View Source

Inequality(Tag, Tag)

Declaration
public static bool operator !=(Tag t1, Tag t2)
Parameters
Type Name Description
Tag t1
Tag t2
Returns
Type Description
System.Boolean
Back to top Copyright © 2015-2016 Microsoft
Generated by DocFX