Esempio n. 1
0
 /// <summary>
 /// Atomic spatial assertion that provides the specified permission to the specified location.
 /// </summary>
 /// <param name="fieldOrPredicateCall">The field or predicate (with arguments) that the spatial assertion refers to.</param>
 /// <param name="permission">How much permissions does this spatial assertion refer to.</param>
 public static bool Acc <T>(T fieldOrPredicateCall, Permission permission)
 {
     return(true);
 }
Esempio n. 2
0
 /// <summary>
 /// Atomic spatial assertion that provides a specified permission to access all elements of the array.
 /// </summary>
 /// <param name="array">The array to access.</param>
 /// <param name="permission">The permission we have to the array</param>
 /// <typeparam name="T">Type of the array's elements. Only Int32 is supported.</typeparam>
 public static bool AccArray <T>(T[] array, Permission permission)
 {
     return(true);
 }