15 references to SemaphoreRights
System (15)
sys\system\security\accesscontrol\semaphoresecurity.cs (8)
50public SemaphoreAccessRule(IdentityReference identity, SemaphoreRights eventRights, AccessControlType type) 55public SemaphoreAccessRule(String identity, SemaphoreRights eventRights, AccessControlType type) 81public SemaphoreRights SemaphoreRights { 82get { return (SemaphoreRights) base.AccessMask; } 89public SemaphoreAuditRule(IdentityReference identity, SemaphoreRights eventRights, AuditFlags flags) 106public SemaphoreRights SemaphoreRights { 107get { return (SemaphoreRights) base.AccessMask; } 254get { return typeof(SemaphoreRights); }
sys\system\threading\semaphore.cs (7)
172return OpenExisting(name, SemaphoreRights.Modify | SemaphoreRights.Synchronize); 178public static Semaphore OpenExisting(string name, SemaphoreRights rights) 209return OpenExistingWorker(name, SemaphoreRights.Modify | SemaphoreRights.Synchronize, out result) == OpenExistingResult.Success; 219public static bool TryOpenExisting(string name, SemaphoreRights rights, out Semaphore result) 244SemaphoreRights rights,