当前位置: 首页>>代码示例>>C#>>正文


C# Semaphore.SetAccessControl方法代码示例

本文整理汇总了C#中System.Threading.Semaphore.SetAccessControl方法的典型用法代码示例。如果您正苦于以下问题:C# Semaphore.SetAccessControl方法的具体用法?C# Semaphore.SetAccessControl怎么用?C# Semaphore.SetAccessControl使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在System.Threading.Semaphore的用法示例。


在下文中一共展示了Semaphore.SetAccessControl方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: PermissionsActuallyWork

		public void PermissionsActuallyWork ()
		{
			if (PlatformID.Win32NT != Environment.OSVersion.Platform) {
				Assert.Ignore ();
			}

			bool createdNew; SemaphoreSecurity security;
			string name = @"Local\MonoTestSemaphore";

			using (Semaphore semaphore = new Semaphore (1, 1, name, out createdNew)) {
				Assert.IsFalse (semaphore.SafeWaitHandle.IsInvalid);
				Assert.IsTrue (createdNew);

				// Make sure our later error will be due to permissions and not some sharing bug.
				bool createdAnotherNew;
				using (Semaphore anotherSemaphore = new Semaphore (1, 1, name, out createdAnotherNew)) {
					Assert.IsFalse (anotherSemaphore.SafeWaitHandle.IsInvalid);
					Assert.IsFalse (createdAnotherNew);
				}

				// Let's make a deny all.
				security = semaphore.GetAccessControl ();

				foreach (SemaphoreAccessRule rule in security.GetAccessRules
				         (true, false, typeof (SecurityIdentifier))) {
					security.RemoveAccessRuleSpecific (rule);
				}

				Assert.AreEqual (0, security.GetAccessRules (true, false, typeof (SecurityIdentifier)).Count);
				semaphore.SetAccessControl (security);

				security = semaphore.GetAccessControl ();
				Assert.AreEqual (0, security.GetAccessRules (true, false, typeof (SecurityIdentifier)).Count);

				// MS.NET will throw on the first line below.
				// For Mono testing the latter verifies the rest until the Semaphore bug is fixed.
				// Also, NUnit 2.4 appears to lacks Assert.Pass ().
				Semaphore badSemaphore = new Semaphore (1, 1, name);
				if (badSemaphore.SafeWaitHandle.IsInvalid)
					throw new UnauthorizedAccessException ();
			}
		}
开发者ID:nlhepler,项目名称:mono,代码行数:42,代码来源:SemaphoreSecurityTest.cs

示例2: SetAccessControl_Null

		[Category ("NotWorking")] // not implemented in Mono
		public void SetAccessControl_Null ()
		{
			Semaphore s = new Semaphore (0, 1, null);
			s.SetAccessControl (null);
		}
开发者ID:ItsVeryWindy,项目名称:mono,代码行数:6,代码来源:SemaphoreTest.cs

示例3: AccessControl_Unnamed

		[Category ("NotWorking")] // not implemented in Mono
		public void AccessControl_Unnamed ()
		{
			Semaphore s = new Semaphore (0, 1, null);
			SemaphoreSecurity ss = s.GetAccessControl ();
			Assert.IsNotNull (ss, "GetAccessControl");
			s.SetAccessControl (ss);
		}
开发者ID:ItsVeryWindy,项目名称:mono,代码行数:8,代码来源:SemaphoreTest.cs

示例4: SetAccessControl

 public static void SetAccessControl(Semaphore semaphore, SemaphoreSecurity semaphoreSecurity)
 {
     semaphore.SetAccessControl(semaphoreSecurity);
 }
开发者ID:noahfalk,项目名称:corefx,代码行数:4,代码来源:ThreadingAclExtensions.net46.cs


注:本文中的System.Threading.Semaphore.SetAccessControl方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。