System.Threading.EventWaitHandle.SetAccessControl C# (CSharp) Метод

SetAccessControl() приватный Метод

private SetAccessControl ( EventWaitHandleSecurity eventSecurity ) : void
eventSecurity EventWaitHandleSecurity
Результат void
		public void SetAccessControl (EventWaitHandleSecurity eventSecurity)
		{
			throw new NotImplementedException ();
		}
#endif

Usage Example

Пример #1
0
        public static void SetAccessControl(this EventWaitHandle handle, EventWaitHandleSecurity eventSecurity)
        {
            if (handle == null)
            {
                throw new ArgumentNullException(nameof(handle));
            }

            handle.SetAccessControl(eventSecurity);
        }
All Usage Examples Of System.Threading.EventWaitHandle::SetAccessControl