Esempio n. 1
0
 /// <summary>
 /// Locks the instance and (possible) all dependent objects.
 /// </summary>
 /// <param name="recursive"><see langword="True"/> if all dependent objects should be locked too.</param>
 public override void Lock(bool recursive)
 {
     base.Lock(recursive);
     columns.Lock(recursive);
     nonkeyColumns.Lock(recursive);
     if (partitionDescriptor != null)
     {
         partitionDescriptor.Lock(recursive);
     }
 }
 /// <inheritdoc/>
 public override void Lock(bool recursive)
 {
     languages.Lock(recursive);
     base.Lock(recursive);
 }
Esempio n. 3
0
 /// <summary>
 /// Locks the instance and (possible) all dependent objects.
 /// </summary>
 /// <param name="recursive"><see langword="True"/> if all dependent objects should be locked too.</param>
 public override void Lock(bool recursive)
 {
     base.Lock(recursive);
     columns.Lock(recursive);
     referencedColumns.Lock(recursive);
 }