Exemple #1
0
 internal LockedVariant GetLocked()
 {
     if (this.locked == null)
     {
         this.locked = new LockedVariant(this);
     }
     return(this.locked);
 }
Exemple #2
0
 internal LockedVariant GetLocked(bool direct = false)
 {
     if (this.locked == null)
     {
         this.locked = new LockedVariant(this, direct);
     }
     return(this.locked);
 }