Наследование: TpmStructureBase
Пример #1
0
 ///<param name = "the_tpmProperty">an array of tagged properties</param>
 public TaggedTpmPropertyArray(
 TaggedProperty[] the_tpmProperty
 )
 {
     this.tpmProperty = the_tpmProperty;
 }
Пример #2
0
 public TaggedProperty(TaggedProperty the_TaggedProperty)
 {
     if((Object) the_TaggedProperty == null ) throw new ArgumentException(Globs.GetResourceString("parmError"));
     property = the_TaggedProperty.property;
     value = the_TaggedProperty.value;
 }