Skip to content

Commit 2951a55

Browse files
Merge pull request #12291 from dotnet/main
Merge main into live
2 parents 1263920 + 7409565 commit 2951a55

16 files changed

+97
-13
lines changed

xml/System.Security.AccessControl/EventWaitHandleAccessRule.xml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,11 @@
4646
<remarks>
4747
<format type="text/markdown"><![CDATA[
4848
49-
## Remarks
49+
## Remarks
50+
51+
> [!NOTE]
52+
> This type is only supported on Windows.
53+
5054
The <xref:System.Security.AccessControl.EventWaitHandleAccessRule> class is one of a set of classes that the .NET Framework provides for managing Windows access control security on named system events. For an overview of these classes, and their relationship to the underlying Windows access control structures, see <xref:System.Security.AccessControl.EventWaitHandleSecurity>.
5155
5256
> [!NOTE]

xml/System.Security.AccessControl/EventWaitHandleAuditRule.xml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,11 @@
4242
<remarks>
4343
<format type="text/markdown"><![CDATA[
4444
45-
## Remarks
45+
## Remarks
46+
47+
> [!NOTE]
48+
> This type is only supported on Windows.
49+
4650
The <xref:System.Security.AccessControl.EventWaitHandleAuditRule> class is one of a set of classes that the .NET Framework provides for managing Windows access control security on named system events. For an overview of these classes and their relationship to the underlying Windows access control structures, see <xref:System.Security.AccessControl.EventWaitHandleSecurity>.
4751
4852
> [!NOTE]

xml/System.Security.AccessControl/EventWaitHandleRights.xml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,11 @@
4545
<remarks>
4646
<format type="text/markdown"><![CDATA[
4747
48-
## Remarks
48+
## Remarks
49+
50+
> [!NOTE]
51+
> This type is only supported on Windows.
52+
4953
Use the <xref:System.Security.AccessControl.EventWaitHandleRights> enumeration to specify access control rights when you create <xref:System.Security.AccessControl.EventWaitHandleAccessRule> objects. To apply access rights to a named system event, first add <xref:System.Security.AccessControl.EventWaitHandleAccessRule> objects to an <xref:System.Security.AccessControl.EventWaitHandleSecurity> object, then attach the <xref:System.Security.AccessControl.EventWaitHandleSecurity> object to the named system event using the <xref:System.Threading.EventWaitHandle.%23ctor%28System.Boolean%2CSystem.Threading.EventResetMode%2CSystem.String%2CSystem.Boolean%40%2CSystem.Security.AccessControl.EventWaitHandleSecurity%29?displayProperty=nameWithType> constructor or the <xref:System.Threading.EventWaitHandle.SetAccessControl%2A?displayProperty=nameWithType> method.
5054
5155
## Examples

xml/System.Security.AccessControl/EventWaitHandleSecurity.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,10 @@
4747
<format type="text/markdown"><![CDATA[
4848
4949
## Remarks
50+
51+
> [!NOTE]
52+
> This type is only supported on Windows.
53+
5054
An <xref:System.Security.AccessControl.EventWaitHandleSecurity> object specifies access rights for a named system wait handle, and also specifies the way access attempts are audited. Access rights to the wait handle are expressed as rules, with each access rule represented by an <xref:System.Security.AccessControl.EventWaitHandleAccessRule> object. Each auditing rule is represented by an <xref:System.Security.AccessControl.EventWaitHandleAuditRule> object.
5155
5256
This mirrors the underlying Windows security system, in which each securable object has at most one discretionary access control list (DACL) that controls access to the secured object, and at most one system access control list (SACL) that specifies which access attempts are audited. The DACL and SACL are ordered lists of access control entries (ACE) that specify access and auditing for users and groups. An <xref:System.Security.AccessControl.EventWaitHandleAccessRule> or <xref:System.Security.AccessControl.EventWaitHandleAuditRule> object might represent more than one ACE.

xml/System.Security.AccessControl/MutexAccessRule.xml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,11 @@
4646
<remarks>
4747
<format type="text/markdown"><![CDATA[
4848
49-
## Remarks
49+
## Remarks
50+
51+
> [!NOTE]
52+
> This type is only supported on Windows.
53+
5054
The <xref:System.Security.AccessControl.MutexAccessRule> class is one of a set of classes that the .NET Framework provides for managing Windows access control security on named system mutexes. For an overview of these classes, and their relationship to the underlying Windows access control structures, see <xref:System.Security.AccessControl.MutexSecurity>.
5155
5256
> [!NOTE]

xml/System.Security.AccessControl/MutexAuditRule.xml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,11 @@
4242
<remarks>
4343
<format type="text/markdown"><![CDATA[
4444
45-
## Remarks
45+
## Remarks
46+
47+
> [!NOTE]
48+
> This type is only supported on Windows.
49+
4650
The <xref:System.Security.AccessControl.MutexAuditRule> class is one of a set of classes that the .NET Framework provides for managing Windows access control security on named system mutexes. For an overview of these classes and their relationship to the underlying Windows access control structures, see <xref:System.Security.AccessControl.MutexSecurity>.
4751
4852
> [!NOTE]

xml/System.Security.AccessControl/MutexRights.xml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,11 @@
4545
<remarks>
4646
<format type="text/markdown"><![CDATA[
4747
48-
## Remarks
48+
## Remarks
49+
50+
> [!NOTE]
51+
> This type is only supported on Windows.
52+
4953
Use the <xref:System.Security.AccessControl.MutexRights> enumeration to specify access control rights when you create <xref:System.Security.AccessControl.MutexSecurity> objects. To apply access rights to a named system mutex, use <xref:System.Security.AccessControl.MutexSecurity> objects with the <xref:System.Threading.Mutex.%23ctor%28System.Boolean%2CSystem.String%2CSystem.Boolean%40%2CSystem.Security.AccessControl.MutexSecurity%29> constructor and the <xref:System.Threading.Mutex.SetAccessControl%2A?displayProperty=nameWithType> method.
5054
5155
## Examples

xml/System.Security.AccessControl/MutexSecurity.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,10 @@
4747
<format type="text/markdown"><![CDATA[
4848
4949
## Remarks
50+
51+
> [!NOTE]
52+
> This type is only supported on Windows.
53+
5054
A <xref:System.Security.AccessControl.MutexSecurity> object specifies access rights for a named system mutex, and also specifies how access attempts are audited. Access rights to the mutex are expressed as rules, with each access rule represented by a <xref:System.Security.AccessControl.MutexAccessRule> object. Each auditing rule is represented by a <xref:System.Security.AccessControl.MutexAuditRule> object.
5155
5256
This mirrors the underlying Windows security system, in which each securable object has at most one discretionary access control list (DACL) that controls access to the secured object, and at most one system access control list (SACL) that specifies which access attempts are audited. The DACL and SACL are ordered lists of access control entries (ACE) that specify access and auditing for users and groups. A <xref:System.Security.AccessControl.MutexAccessRule> or <xref:System.Security.AccessControl.MutexAuditRule> object might represent more than one ACE.

xml/System.Security.AccessControl/SemaphoreAccessRule.xml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,11 @@
5050
<remarks>
5151
<format type="text/markdown"><![CDATA[
5252
53-
## Remarks
53+
## Remarks
54+
55+
> [!NOTE]
56+
> This type is only supported on Windows.
57+
5458
The <xref:System.Security.AccessControl.SemaphoreAccessRule> class is one of a set of classes that the .NET Framework provides for managing Windows access control security on named system semaphores. For an overview of these classes, and their relationship to the underlying Windows access control structures, see <xref:System.Security.AccessControl.SemaphoreSecurity>.
5559
5660
> [!NOTE]

xml/System.Security.AccessControl/SemaphoreAuditRule.xml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,11 @@
4646
<remarks>
4747
<format type="text/markdown"><![CDATA[
4848
49-
## Remarks
49+
## Remarks
50+
51+
> [!NOTE]
52+
> This type is only supported on Windows.
53+
5054
The <xref:System.Security.AccessControl.SemaphoreAuditRule> class is one of a set of classes that the .NET Framework provides for managing Windows access control security on named system semaphores. For an overview of these classes and their relationship to the underlying Windows access control structures, see <xref:System.Security.AccessControl.SemaphoreSecurity>.
5155
5256
> [!NOTE]

0 commit comments

Comments
 (0)