Ejemplo n.º 1
0
 public void Dispose()
 {
     if (Current == owner)
     {
         Current = null;
     }
 }
Ejemplo n.º 2
0
 public void Validate()
 {
     if (owner != null)
     {
         InstalledSDKOwner o = owner;
         owner   = null;
         isValid = o.ValidateSDK(this);
         owner   = o;
     }
     else
     {
         isValid = true;
     }
 }
Ejemplo n.º 3
0
 public InstalledSDKContext(InstalledSDKOwner owner)
 {
     this.owner = owner;
     Current    = owner;
 }
Ejemplo n.º 4
0
 public InstalledSDK(InstalledSDKOwner owner)
 {
     this.owner = owner;
 }
Ejemplo n.º 5
0
 public InstalledSDK()
 {
     this.owner = InstalledSDKContext.Current;
 }
Ejemplo n.º 6
0
 public void Dispose()
 {
     if (Current == owner) Current = null;
 }
Ejemplo n.º 7
0
 public InstalledSDKContext(InstalledSDKOwner owner)
 {
     this.owner = owner;
     Current = owner;
 }
Ejemplo n.º 8
0
 public InstalledSDK() { this.owner = InstalledSDKContext.Current; }
Ejemplo n.º 9
0
 public InstalledSDK(InstalledSDKOwner owner) { this.owner = owner; }
Ejemplo n.º 10
0
 public void Validate()
 {
     if (owner != null)
     {
         InstalledSDKOwner o = owner;
         owner = null;
         isValid = o.ValidateSDK(this);
         owner = o;
     }
     else isValid = true;
 }