ClearCanvas.Dicom.DicomUid.DicomUid C# (CSharp) Метод

DicomUid() публичный Метод

Constructor.
public DicomUid ( string uid, string desc, UidType type ) : System
uid string The UID string.
desc string A description of the UID.
type UidType The type of the UID.
Результат System
		public DicomUid(string uid, string desc, UidType type)
		{
			if (uid.Length > 64)
				throw new DicomException("Invalid UID length: " + uid.Length + "!");

			_uid = uid;
			_description = desc;
			_type = type;
		}