Exemple #1
0
 public static TssSdtUint NewTssSdtUint()
 {
     return(new TssSdtUint
     {
         m_slot = TssSdtUintSlot.NewSlot(null)
     });
 }
Exemple #2
0
 private void SetValue(uint v)
 {
     if (this.m_slot == null)
     {
         this.m_slot = TssSdtUintSlot.NewSlot(null);
     }
     this.m_slot.SetValue(v);
 }
Exemple #3
0
 private uint GetValue()
 {
     if (this.m_slot == null)
     {
         this.m_slot = TssSdtUintSlot.NewSlot(null);
     }
     return(this.m_slot.GetValue());
 }