-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSystem.Security.AccessControl.xml
2046 lines (2046 loc) · 216 KB
/
System.Security.AccessControl.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly>
<name>System.Security.AccessControl</name>
</assembly>
<members>
<member name="T:System.Security.AccessControl.AccessControlActions">
<summary>Specifies the actions that are permitted for securable objects.</summary>
</member>
<member name="F:System.Security.AccessControl.AccessControlActions.Change">
<summary>Specifies write-only access.</summary>
</member>
<member name="F:System.Security.AccessControl.AccessControlActions.None">
<summary>Specifies no access.</summary>
</member>
<member name="F:System.Security.AccessControl.AccessControlActions.View">
<summary>Specifies read-only access.</summary>
</member>
<member name="T:System.Security.AccessControl.AccessControlModification">
<summary>Specifies the type of access control modification to perform. This enumeration is used by methods of the <see cref="T:System.Security.AccessControl.ObjectSecurity" /> class and its descendents.</summary>
</member>
<member name="F:System.Security.AccessControl.AccessControlModification.Add">
<summary>Add the specified authorization rule to the access control list (ACL).</summary>
</member>
<member name="F:System.Security.AccessControl.AccessControlModification.Remove">
<summary>Remove authorization rules that contain the same security identifier (SID) and access mask as the specified authorization rule from the ACL.</summary>
</member>
<member name="F:System.Security.AccessControl.AccessControlModification.RemoveAll">
<summary>Remove authorization rules that contain the same SID as the specified authorization rule from the ACL.</summary>
</member>
<member name="F:System.Security.AccessControl.AccessControlModification.RemoveSpecific">
<summary>Remove authorization rules that exactly match the specified authorization rule from the ACL.</summary>
</member>
<member name="F:System.Security.AccessControl.AccessControlModification.Reset">
<summary>Remove authorization rules that contain the same SID as the specified authorization rule from the ACL, and then add the specified authorization rule to the ACL.</summary>
</member>
<member name="F:System.Security.AccessControl.AccessControlModification.Set">
<summary>Remove all authorization rules from the ACL, then add the specified authorization rule to the ACL.</summary>
</member>
<member name="T:System.Security.AccessControl.AccessControlSections">
<summary>Specifies which sections of a security descriptor to save or load.</summary>
</member>
<member name="F:System.Security.AccessControl.AccessControlSections.Access">
<summary>The discretionary access control list (DACL).</summary>
</member>
<member name="F:System.Security.AccessControl.AccessControlSections.All">
<summary>The entire security descriptor.</summary>
</member>
<member name="F:System.Security.AccessControl.AccessControlSections.Audit">
<summary>The system access control list (SACL).</summary>
</member>
<member name="F:System.Security.AccessControl.AccessControlSections.Group">
<summary>The primary group.</summary>
</member>
<member name="F:System.Security.AccessControl.AccessControlSections.None">
<summary>No sections.</summary>
</member>
<member name="F:System.Security.AccessControl.AccessControlSections.Owner">
<summary>The owner.</summary>
</member>
<member name="T:System.Security.AccessControl.AccessControlType">
<summary>Specifies whether an <see cref="T:System.Security.AccessControl.AccessRule" /> object is used to allow or deny access. These values are not flags, and they cannot be combined.</summary>
</member>
<member name="F:System.Security.AccessControl.AccessControlType.Allow">
<summary>The <see cref="T:System.Security.AccessControl.AccessRule" /> object is used to allow access to a secured object.</summary>
</member>
<member name="F:System.Security.AccessControl.AccessControlType.Deny">
<summary>The <see cref="T:System.Security.AccessControl.AccessRule" /> object is used to deny access to a secured object.</summary>
</member>
<member name="T:System.Security.AccessControl.AccessRule">
<summary>Represents a combination of a user's identity, an access mask, and an access control type (allow or deny). An <see cref="T:System.Security.AccessControl.AccessRule" /> object also contains information about the how the rule is inherited by child objects and how that inheritance is propagated.</summary>
</member>
<member name="M:System.Security.AccessControl.AccessRule.#ctor(System.Security.Principal.IdentityReference,System.Int32,System.Boolean,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AccessControlType)">
<summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.AccessRule" /> class by using the specified values.</summary>
<param name="identity">The identity to which the access rule applies. This parameter must be an object that can be cast as a <see cref="T:System.Security.Principal.SecurityIdentifier" />.</param>
<param name="accessMask">The access mask of this rule. The access mask is a 32-bit collection of anonymous bits, the meaning of which is defined by the individual integrators.</param>
<param name="isInherited">
<see langword="true" /> if this rule is inherited from a parent container.</param>
<param name="inheritanceFlags">The inheritance properties of the access rule.</param>
<param name="propagationFlags">Whether inherited access rules are automatically propagated. The propagation flags are ignored if <paramref name="inheritanceFlags" /> is set to <see cref="F:System.Security.AccessControl.InheritanceFlags.None" />.</param>
<param name="type">The valid access control type.</param>
<exception cref="T:System.ArgumentException">The value of the <paramref name="identity" /> parameter cannot be cast as a <see cref="T:System.Security.Principal.SecurityIdentifier" />, or the <paramref name="type" /> parameter contains an invalid value.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">The value of the <paramref name="accessMask" /> parameter is zero, or the <paramref name="inheritanceFlags" /> or <paramref name="propagationFlags" /> parameters contain unrecognized flag values.</exception>
</member>
<member name="P:System.Security.AccessControl.AccessRule.AccessControlType">
<summary>Gets the <see cref="T:System.Security.AccessControl.AccessControlType" /> value associated with this <see cref="T:System.Security.AccessControl.AccessRule" /> object.</summary>
<returns>The <see cref="T:System.Security.AccessControl.AccessControlType" /> value associated with this <see cref="T:System.Security.AccessControl.AccessRule" /> object.</returns>
</member>
<member name="T:System.Security.AccessControl.AccessRule`1">
<summary>Represents a combination of a user's identity, an access mask, and an access control type (allow or deny). An AccessRule`1 object also contains information about the how the rule is inherited by child objects and how that inheritance is propagated.</summary>
<typeparam name="T">The access rights type for the access rule.</typeparam>
</member>
<member name="M:System.Security.AccessControl.AccessRule`1.#ctor(System.Security.Principal.IdentityReference,`0,System.Security.AccessControl.AccessControlType)">
<summary>Initializes a new instance of the AccessRule'1 class by using the specified values.</summary>
<param name="identity">The identity to which the access rule applies.</param>
<param name="rights">The rights of the access rule.</param>
<param name="type">The valid access control type.</param>
</member>
<member name="M:System.Security.AccessControl.AccessRule`1.#ctor(System.Security.Principal.IdentityReference,`0,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AccessControlType)">
<summary>Initializes a new instance of the AccessRule'1 class by using the specified values.</summary>
<param name="identity">The identity to which the access rule applies.</param>
<param name="rights">The rights of the access rule.</param>
<param name="inheritanceFlags">The inheritance properties of the access rule.</param>
<param name="propagationFlags">Whether inherited access rules are automatically propagated. The propagation flags are ignored if <paramref name="inheritanceFlags" /> is set to <see cref="F:System.Security.AccessControl.InheritanceFlags.None" />.</param>
<param name="type">The valid access control type.</param>
</member>
<member name="M:System.Security.AccessControl.AccessRule`1.#ctor(System.String,`0,System.Security.AccessControl.AccessControlType)">
<summary>Initializes a new instance of the AccessRule'1 class by using the specified values.</summary>
<param name="identity">The identity to which the access rule applies.</param>
<param name="rights">The rights of the access rule.</param>
<param name="type">The valid access control type.</param>
</member>
<member name="M:System.Security.AccessControl.AccessRule`1.#ctor(System.String,`0,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AccessControlType)">
<summary>Initializes a new instance of the AccessRule'1 class by using the specified values.</summary>
<param name="identity">The identity to which the access rule applies.</param>
<param name="rights">The rights of the access rule.</param>
<param name="inheritanceFlags">The inheritance properties of the access rule.</param>
<param name="propagationFlags">Whether inherited access rules are automatically propagated. The propagation flags are ignored if <paramref name="inheritanceFlags" /> is set to <see cref="F:System.Security.AccessControl.InheritanceFlags.None" />.</param>
<param name="type">The valid access control type.</param>
</member>
<member name="P:System.Security.AccessControl.AccessRule`1.Rights">
<summary>Gets the rights of the current instance.</summary>
<returns>The rights, cast as type <T>, of the current instance.</returns>
</member>
<member name="T:System.Security.AccessControl.AceEnumerator">
<summary>Provides the ability to iterate through the access control entries (ACEs) in an access control list (ACL).</summary>
</member>
<member name="P:System.Security.AccessControl.AceEnumerator.Current">
<summary>Gets the current element in the <see cref="T:System.Security.AccessControl.GenericAce" /> collection. This property gets the type-friendly version of the object.</summary>
<returns>The current element in the <see cref="T:System.Security.AccessControl.GenericAce" /> collection.</returns>
</member>
<member name="M:System.Security.AccessControl.AceEnumerator.MoveNext">
<summary>Advances the enumerator to the next element of the <see cref="T:System.Security.AccessControl.GenericAce" /> collection.</summary>
<returns>
<see langword="true" /> if the enumerator was successfully advanced to the next element; <see langword="false" /> if the enumerator has passed the end of the collection.</returns>
<exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
</member>
<member name="M:System.Security.AccessControl.AceEnumerator.Reset">
<summary>Sets the enumerator to its initial position, which is before the first element in the <see cref="T:System.Security.AccessControl.GenericAce" /> collection.</summary>
<exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
</member>
<member name="P:System.Security.AccessControl.AceEnumerator.System#Collections#IEnumerator#Current">
<summary>Gets the current element in the collection.</summary>
<returns>The current element in the collection.</returns>
<exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created.</exception>
</member>
<member name="T:System.Security.AccessControl.AceFlags">
<summary>Specifies the inheritance and auditing behavior of an access control entry (ACE).</summary>
</member>
<member name="F:System.Security.AccessControl.AceFlags.AuditFlags">
<summary>All access attempts are audited.</summary>
</member>
<member name="F:System.Security.AccessControl.AceFlags.ContainerInherit">
<summary>The access mask is propagated to child container objects.</summary>
</member>
<member name="F:System.Security.AccessControl.AceFlags.FailedAccess">
<summary>Failed access attempts are audited.</summary>
</member>
<member name="F:System.Security.AccessControl.AceFlags.InheritanceFlags">
<summary>A logical <see langword="OR" /> of <see cref="F:System.Security.AccessControl.AceFlags.ObjectInherit" />, <see cref="F:System.Security.AccessControl.AceFlags.ContainerInherit" />, <see cref="F:System.Security.AccessControl.AceFlags.NoPropagateInherit" />, and <see cref="F:System.Security.AccessControl.AceFlags.InheritOnly" />.</summary>
</member>
<member name="F:System.Security.AccessControl.AceFlags.Inherited">
<summary>An ACE is inherited from a parent container rather than being explicitly set for an object.</summary>
</member>
<member name="F:System.Security.AccessControl.AceFlags.InheritOnly">
<summary>The access mask is propagated only to child objects. This includes both container and leaf child objects.</summary>
</member>
<member name="F:System.Security.AccessControl.AceFlags.None">
<summary>No ACE flags are set.</summary>
</member>
<member name="F:System.Security.AccessControl.AceFlags.NoPropagateInherit">
<summary>The access checks do not apply to the object; they only apply to its children.</summary>
</member>
<member name="F:System.Security.AccessControl.AceFlags.ObjectInherit">
<summary>The access mask is propagated onto child leaf objects.</summary>
</member>
<member name="F:System.Security.AccessControl.AceFlags.SuccessfulAccess">
<summary>Successful access attempts are audited.</summary>
</member>
<member name="T:System.Security.AccessControl.AceQualifier">
<summary>Specifies the function of an access control entry (ACE).</summary>
</member>
<member name="F:System.Security.AccessControl.AceQualifier.AccessAllowed">
<summary>Allow access.</summary>
</member>
<member name="F:System.Security.AccessControl.AceQualifier.AccessDenied">
<summary>Deny access.</summary>
</member>
<member name="F:System.Security.AccessControl.AceQualifier.SystemAlarm">
<summary>Cause a system alarm.</summary>
</member>
<member name="F:System.Security.AccessControl.AceQualifier.SystemAudit">
<summary>Cause a system audit.</summary>
</member>
<member name="T:System.Security.AccessControl.AceType">
<summary>Defines the available access control entry (ACE) types.</summary>
</member>
<member name="F:System.Security.AccessControl.AceType.AccessAllowed">
<summary>Allows access to an object for a specific trustee identified by an <see cref="T:System.Security.Principal.IdentityReference" /> object.</summary>
</member>
<member name="F:System.Security.AccessControl.AceType.AccessAllowedCallback">
<summary>Allows access to an object for a specific trustee identified by an <see cref="T:System.Security.Principal.IdentityReference" /> object. This ACE type may contain optional callback data. The callback data is a resource manager-specific BLOB that is not interpreted.</summary>
</member>
<member name="F:System.Security.AccessControl.AceType.AccessAllowedCallbackObject">
<summary>Allows access to an object, property set, or property. The ACE contains a set of access rights, a GUID that identifies the type of object, and an <see cref="T:System.Security.Principal.IdentityReference" /> object that identifies the trustee to whom the system will grant access. The ACE also contains a GUID and a set of flags that control inheritance of the ACE by child objects. This ACE type may contain optional callback data. The callback data is a resource manager-specific BLOB that is not interpreted.</summary>
</member>
<member name="F:System.Security.AccessControl.AceType.AccessAllowedCompound">
<summary>Defined but never used. Included here for completeness.</summary>
</member>
<member name="F:System.Security.AccessControl.AceType.AccessAllowedObject">
<summary>Allows access to an object, property set, or property. The ACE contains a set of access rights, a GUID that identifies the type of object, and an <see cref="T:System.Security.Principal.IdentityReference" /> object that identifies the trustee to whom the system will grant access. The ACE also contains a GUID and a set of flags that control inheritance of the ACE by child objects.</summary>
</member>
<member name="F:System.Security.AccessControl.AceType.AccessDenied">
<summary>Denies access to an object for a specific trustee identified by an <see cref="T:System.Security.Principal.IdentityReference" /> object.</summary>
</member>
<member name="F:System.Security.AccessControl.AceType.AccessDeniedCallback">
<summary>Denies access to an object for a specific trustee identified by an <see cref="T:System.Security.Principal.IdentityReference" /> object. This ACE type can contain optional callback data. The callback data is a resource manager-specific BLOB that is not interpreted.</summary>
</member>
<member name="F:System.Security.AccessControl.AceType.AccessDeniedCallbackObject">
<summary>Denies access to an object, property set, or property. The ACE contains a set of access rights, a GUID that identifies the type of object, and an <see cref="T:System.Security.Principal.IdentityReference" /> object that identifies the trustee to whom the system will grant access. The ACE also contains a GUID and a set of flags that control inheritance of the ACE by child objects. This ACE type can contain optional callback data. The callback data is a resource manager-specific BLOB that is not interpreted.</summary>
</member>
<member name="F:System.Security.AccessControl.AceType.AccessDeniedObject">
<summary>Denies access to an object, property set, or property. The ACE contains a set of access rights, a GUID that identifies the type of object, and an <see cref="T:System.Security.Principal.IdentityReference" /> object that identifies the trustee to whom the system will grant access. The ACE also contains a GUID and a set of flags that control inheritance of the ACE by child objects.</summary>
</member>
<member name="F:System.Security.AccessControl.AceType.MaxDefinedAceType">
<summary>Tracks the maximum defined ACE type in the enumeration.</summary>
</member>
<member name="F:System.Security.AccessControl.AceType.SystemAlarm">
<summary>Reserved for future use.</summary>
</member>
<member name="F:System.Security.AccessControl.AceType.SystemAlarmCallback">
<summary>Reserved for future use.</summary>
</member>
<member name="F:System.Security.AccessControl.AceType.SystemAlarmCallbackObject">
<summary>Reserved for future use.</summary>
</member>
<member name="F:System.Security.AccessControl.AceType.SystemAlarmObject">
<summary>Reserved for future use.</summary>
</member>
<member name="F:System.Security.AccessControl.AceType.SystemAudit">
<summary>Causes an audit message to be logged when a specified trustee attempts to gain access to an object. The trustee is identified by an <see cref="T:System.Security.Principal.IdentityReference" /> object.</summary>
</member>
<member name="F:System.Security.AccessControl.AceType.SystemAuditCallback">
<summary>Causes an audit message to be logged when a specified trustee attempts to gain access to an object. The trustee is identified by an <see cref="T:System.Security.Principal.IdentityReference" /> object. This ACE type can contain optional callback data. The callback data is a resource manager-specific BLOB that is not interpreted.</summary>
</member>
<member name="F:System.Security.AccessControl.AceType.SystemAuditCallbackObject">
<summary>Causes an audit message to be logged when a specified trustee attempts to gain access to an object or subobjects such as property sets or properties. The ACE contains a set of access rights, a GUID that identifies the type of object or subobject, and an <see cref="T:System.Security.Principal.IdentityReference" /> object that identifies the trustee for whom the system will audit access. The ACE also contains a GUID and a set of flags that control inheritance of the ACE by child objects. This ACE type can contain optional callback data. The callback data is a resource manager-specific BLOB that is not interpreted.</summary>
</member>
<member name="F:System.Security.AccessControl.AceType.SystemAuditObject">
<summary>Causes an audit message to be logged when a specified trustee attempts to gain access to an object or subobjects such as property sets or properties. The ACE contains a set of access rights, a GUID that identifies the type of object or subobject, and an <see cref="T:System.Security.Principal.IdentityReference" /> object that identifies the trustee for whom the system will audit access. The ACE also contains a GUID and a set of flags that control inheritance of the ACE by child objects.</summary>
</member>
<member name="T:System.Security.AccessControl.AuditFlags">
<summary>Specifies the conditions for auditing attempts to access a securable object.</summary>
</member>
<member name="F:System.Security.AccessControl.AuditFlags.Failure">
<summary>Failed access attempts are to be audited.</summary>
</member>
<member name="F:System.Security.AccessControl.AuditFlags.None">
<summary>No access attempts are to be audited.</summary>
</member>
<member name="F:System.Security.AccessControl.AuditFlags.Success">
<summary>Successful access attempts are to be audited.</summary>
</member>
<member name="T:System.Security.AccessControl.AuditRule">
<summary>Represents a combination of a user's identity and an access mask. An <see cref="T:System.Security.AccessControl.AuditRule" /> object also contains information about how the rule is inherited by child objects, how that inheritance is propagated, and for what conditions it is audited.</summary>
</member>
<member name="M:System.Security.AccessControl.AuditRule.#ctor(System.Security.Principal.IdentityReference,System.Int32,System.Boolean,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AuditFlags)">
<summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.AuditRule" /> class by using the specified values.</summary>
<param name="identity">The identity to which the audit rule applies. It must be an object that can be cast as a <see cref="T:System.Security.Principal.SecurityIdentifier" />.</param>
<param name="accessMask">The access mask of this rule. The access mask is a 32-bit collection of anonymous bits, the meaning of which is defined by the individual integrators.</param>
<param name="isInherited">
<see langword="true" /> to inherit this rule from a parent container.</param>
<param name="inheritanceFlags">The inheritance properties of the audit rule.</param>
<param name="propagationFlags">Whether inherited audit rules are automatically propagated. The propagation flags are ignored if <paramref name="inheritanceFlags" /> is set to <see cref="F:System.Security.AccessControl.InheritanceFlags.None" />.</param>
<param name="auditFlags">The conditions for which the rule is audited.</param>
<exception cref="T:System.ArgumentException">The value of the <paramref name="identity" /> parameter cannot be cast as a <see cref="T:System.Security.Principal.SecurityIdentifier" />, or the <paramref name="auditFlags" /> parameter contains an invalid value.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">The value of the <paramref name="accessMask" /> parameter is zero, or the <paramref name="inheritanceFlags" /> or <paramref name="propagationFlags" /> parameters contain unrecognized flag values.</exception>
</member>
<member name="P:System.Security.AccessControl.AuditRule.AuditFlags">
<summary>Gets the audit flags for this audit rule.</summary>
<returns>A bitwise combination of the enumeration values. This combination specifies the audit conditions for this audit rule.</returns>
</member>
<member name="T:System.Security.AccessControl.AuditRule`1">
<summary>Represents a combination of a user's identity and an access mask.</summary>
<typeparam name="T">The type of the audit rule.</typeparam>
</member>
<member name="M:System.Security.AccessControl.AuditRule`1.#ctor(System.Security.Principal.IdentityReference,`0,System.Security.AccessControl.AuditFlags)">
<summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.AuditRule`1" /> class by using the specified values.</summary>
<param name="identity">The identity to which this audit rule applies.</param>
<param name="rights">The rights of the audit rule.</param>
<param name="flags">The conditions for which the rule is audited.</param>
</member>
<member name="M:System.Security.AccessControl.AuditRule`1.#ctor(System.Security.Principal.IdentityReference,`0,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AuditFlags)">
<summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.AuditRule`1" /> class by using the specified values.</summary>
<param name="identity">The identity to which the audit rule applies.</param>
<param name="rights">The rights of the audit rule.</param>
<param name="inheritanceFlags">The inheritance properties of the audit rule.</param>
<param name="propagationFlags">Whether inherited audit rules are automatically propagated.</param>
<param name="flags">The conditions for which the rule is audited.</param>
</member>
<member name="M:System.Security.AccessControl.AuditRule`1.#ctor(System.String,`0,System.Security.AccessControl.AuditFlags)">
<summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.AuditRule`1" /> class by using the specified values.</summary>
<param name="identity">The identity to which the audit rule applies.</param>
<param name="rights">The rights of the audit rule.</param>
<param name="flags">The properties of the audit rule.</param>
</member>
<member name="M:System.Security.AccessControl.AuditRule`1.#ctor(System.String,`0,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.AuditFlags)">
<summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.AuditRule`1" /> class by using the specified values.</summary>
<param name="identity">The identity to which the audit rule applies.</param>
<param name="rights">The rights of the audit rule.</param>
<param name="inheritanceFlags">The inheritance properties of the audit rule.</param>
<param name="propagationFlags">Whether inherited audit rules are automatically propagated.</param>
<param name="flags">The conditions for which the rule is audited.</param>
</member>
<member name="P:System.Security.AccessControl.AuditRule`1.Rights">
<summary>Gets the rights of the audit rule.</summary>
<returns>The rights of the audit rule.</returns>
</member>
<member name="T:System.Security.AccessControl.AuthorizationRule">
<summary>Determines access to securable objects. The derived classes <see cref="T:System.Security.AccessControl.AccessRule" /> and <see cref="T:System.Security.AccessControl.AuditRule" /> offer specializations for access and audit functionality.</summary>
</member>
<member name="M:System.Security.AccessControl.AuthorizationRule.#ctor(System.Security.Principal.IdentityReference,System.Int32,System.Boolean,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags)">
<summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.AccessRule" /> class by using the specified values.</summary>
<param name="identity">The identity to which the access rule applies. This parameter must be an object that can be cast as a <see cref="T:System.Security.Principal.SecurityIdentifier" />.</param>
<param name="accessMask">The access mask of this rule. The access mask is a 32-bit collection of anonymous bits, the meaning of which is defined by the individual integrators.</param>
<param name="isInherited">
<see langword="true" /> to inherit this rule from a parent container.</param>
<param name="inheritanceFlags">The inheritance properties of the access rule.</param>
<param name="propagationFlags">Whether inherited access rules are automatically propagated. The propagation flags are ignored if <paramref name="inheritanceFlags" /> is set to <see cref="F:System.Security.AccessControl.InheritanceFlags.None" />.</param>
<exception cref="T:System.ArgumentException">The value of the <paramref name="identity" /> parameter cannot be cast as a <see cref="T:System.Security.Principal.SecurityIdentifier" />.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">The value of the <paramref name="accessMask" /> parameter is zero, or the <paramref name="inheritanceFlags" /> or <paramref name="propagationFlags" /> parameters contain unrecognized flag values.</exception>
</member>
<member name="P:System.Security.AccessControl.AuthorizationRule.AccessMask">
<summary>Gets the access mask for this rule.</summary>
<returns>The access mask for this rule.</returns>
</member>
<member name="P:System.Security.AccessControl.AuthorizationRule.IdentityReference">
<summary>Gets the <see cref="T:System.Security.Principal.IdentityReference" /> to which this rule applies.</summary>
<returns>The <see cref="T:System.Security.Principal.IdentityReference" /> to which this rule applies.</returns>
</member>
<member name="P:System.Security.AccessControl.AuthorizationRule.InheritanceFlags">
<summary>Gets the value of flags that determine how this rule is inherited by child objects.</summary>
<returns>A bitwise combination of the enumeration values.</returns>
</member>
<member name="P:System.Security.AccessControl.AuthorizationRule.IsInherited">
<summary>Gets a value indicating whether this rule is explicitly set or is inherited from a parent container object.</summary>
<returns>
<see langword="true" /> if this rule is not explicitly set but is instead inherited from a parent container.</returns>
</member>
<member name="P:System.Security.AccessControl.AuthorizationRule.PropagationFlags">
<summary>Gets the value of the propagation flags, which determine how inheritance of this rule is propagated to child objects. This property is significant only when the value of the <see cref="T:System.Security.AccessControl.InheritanceFlags" /> enumeration is not <see cref="F:System.Security.AccessControl.InheritanceFlags.None" />.</summary>
<returns>A bitwise combination of the enumeration values.</returns>
</member>
<member name="T:System.Security.AccessControl.AuthorizationRuleCollection">
<summary>Represents a collection of <see cref="T:System.Security.AccessControl.AuthorizationRule" /> objects.</summary>
</member>
<member name="M:System.Security.AccessControl.AuthorizationRuleCollection.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.AuthorizationRuleCollection" /> class.</summary>
</member>
<member name="M:System.Security.AccessControl.AuthorizationRuleCollection.AddRule(System.Security.AccessControl.AuthorizationRule)">
<summary>Adds an <see cref="T:System.Security.AccessControl.AuthorizationRule" /> object to the collection.</summary>
<param name="rule">The <see cref="T:System.Security.AccessControl.AuthorizationRule" /> object to add to the collection.</param>
</member>
<member name="M:System.Security.AccessControl.AuthorizationRuleCollection.CopyTo(System.Security.AccessControl.AuthorizationRule[],System.Int32)">
<summary>Copies the contents of the collection to an array.</summary>
<param name="rules">An array to which to copy the contents of the collection.</param>
<param name="index">The zero-based index from which to begin copying.</param>
</member>
<member name="P:System.Security.AccessControl.AuthorizationRuleCollection.Item(System.Int32)">
<summary>Gets the <see cref="T:System.Security.AccessControl.AuthorizationRule" /> object at the specified index of the collection.</summary>
<param name="index">The zero-based index of the <see cref="T:System.Security.AccessControl.AuthorizationRule" /> object to get.</param>
<returns>The <see cref="T:System.Security.AccessControl.AuthorizationRule" /> object at the specified index.</returns>
</member>
<member name="T:System.Security.AccessControl.CommonAce">
<summary>Represents an access control entry (ACE).</summary>
</member>
<member name="M:System.Security.AccessControl.CommonAce.#ctor(System.Security.AccessControl.AceFlags,System.Security.AccessControl.AceQualifier,System.Int32,System.Security.Principal.SecurityIdentifier,System.Boolean,System.Byte[])">
<summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.CommonAce" /> class.</summary>
<param name="flags">Flags that specify information about the inheritance, inheritance propagation, and auditing conditions for the new access control entry (ACE).</param>
<param name="qualifier">The use of the new ACE.</param>
<param name="accessMask">The access mask for the ACE.</param>
<param name="sid">The <see cref="T:System.Security.Principal.SecurityIdentifier" /> associated with the new ACE.</param>
<param name="isCallback">
<see langword="true" /> to specify that the new ACE is a callback type ACE.</param>
<param name="opaque">Opaque data associated with the new ACE. Opaque data is allowed only for callback ACE types. The length of this array must not be greater than the return value of the <see cref="M:System.Security.AccessControl.CommonAce.MaxOpaqueLength(System.Boolean)" /> method.</param>
</member>
<member name="P:System.Security.AccessControl.CommonAce.BinaryLength">
<summary>Gets the length, in bytes, of the binary representation of the current <see cref="T:System.Security.AccessControl.CommonAce" /> object. Use this length with the <see cref="M:System.Security.AccessControl.CommonAce.GetBinaryForm(System.Byte[],System.Int32)" /> method before marshaling the ACL into a binary array.</summary>
<returns>The length, in bytes, of the binary representation of the current <see cref="T:System.Security.AccessControl.CommonAce" /> object.</returns>
</member>
<member name="M:System.Security.AccessControl.CommonAce.GetBinaryForm(System.Byte[],System.Int32)">
<summary>Marshals the contents of the <see cref="T:System.Security.AccessControl.CommonAce" /> object into the specified byte array beginning at the specified offset.</summary>
<param name="binaryForm">The byte array into which the contents of the <see cref="T:System.Security.AccessControl.CommonAce" /> object is marshaled.</param>
<param name="offset">The offset at which to start marshaling.</param>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="offset" /> is negative or too high to allow the entire <see cref="T:System.Security.AccessControl.CommonAce" /> to be copied into the <paramref name="binaryForm" /> array.</exception>
</member>
<member name="M:System.Security.AccessControl.CommonAce.MaxOpaqueLength(System.Boolean)">
<summary>Gets the maximum allowed length of an opaque data BLOB for callback access control entries (ACEs).</summary>
<param name="isCallback">
<see langword="true" /> to specify that the <see cref="T:System.Security.AccessControl.CommonAce" /> object is a callback ACE type.</param>
<returns>The allowed length of an opaque data BLOB.</returns>
</member>
<member name="T:System.Security.AccessControl.CommonAcl">
<summary>Represents an access control list (ACL) and is the base class for the <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> and <see cref="T:System.Security.AccessControl.SystemAcl" /> classes.</summary>
</member>
<member name="P:System.Security.AccessControl.CommonAcl.BinaryLength">
<summary>Gets the length, in bytes, of the binary representation of the current <see cref="T:System.Security.AccessControl.CommonAcl" /> object. This length should be used before marshaling the access control list (ACL) into a binary array by using the <see cref="M:System.Security.AccessControl.CommonAcl.GetBinaryForm(System.Byte[],System.Int32)" /> method.</summary>
<returns>The length, in bytes, of the binary representation of the current <see cref="T:System.Security.AccessControl.CommonAcl" /> object.</returns>
</member>
<member name="P:System.Security.AccessControl.CommonAcl.Count">
<summary>Gets the number of access control entries (ACEs) in the current <see cref="T:System.Security.AccessControl.CommonAcl" /> object.</summary>
<returns>The number of ACEs in the current <see cref="T:System.Security.AccessControl.CommonAcl" /> object.</returns>
</member>
<member name="M:System.Security.AccessControl.CommonAcl.GetBinaryForm(System.Byte[],System.Int32)">
<summary>Marshals the contents of the <see cref="T:System.Security.AccessControl.CommonAcl" /> object into the specified byte array beginning at the specified offset.</summary>
<param name="binaryForm">The byte array into which the contents of the <see cref="T:System.Security.AccessControl.CommonAcl" /> is marshaled.</param>
<param name="offset">The offset at which to start marshaling.</param>
</member>
<member name="P:System.Security.AccessControl.CommonAcl.IsCanonical">
<summary>Gets a Boolean value that specifies whether the access control entries (ACEs) in the current <see cref="T:System.Security.AccessControl.CommonAcl" /> object are in canonical order.</summary>
<returns>
<see langword="true" /> if the ACEs in the current <see cref="T:System.Security.AccessControl.CommonAcl" /> object are in canonical order; otherwise, <see langword="false" />.</returns>
</member>
<member name="P:System.Security.AccessControl.CommonAcl.IsContainer">
<summary>Sets whether the <see cref="T:System.Security.AccessControl.CommonAcl" /> object is a container.</summary>
<returns>
<see langword="true" /> if the current <see cref="T:System.Security.AccessControl.CommonAcl" /> object is a container.</returns>
</member>
<member name="P:System.Security.AccessControl.CommonAcl.IsDS">
<summary>Sets whether the current <see cref="T:System.Security.AccessControl.CommonAcl" /> object is a directory object access control list (ACL).</summary>
<returns>
<see langword="true" /> if the current <see cref="T:System.Security.AccessControl.CommonAcl" /> object is a directory object ACL.</returns>
</member>
<member name="P:System.Security.AccessControl.CommonAcl.Item(System.Int32)">
<summary>Gets or sets the <see cref="T:System.Security.AccessControl.CommonAce" /> at the specified index.</summary>
<param name="index">The zero-based index of the <see cref="T:System.Security.AccessControl.CommonAce" /> to get or set.</param>
<returns>The <see cref="T:System.Security.AccessControl.CommonAce" /> at the specified index.</returns>
</member>
<member name="M:System.Security.AccessControl.CommonAcl.Purge(System.Security.Principal.SecurityIdentifier)">
<summary>Removes all access control entries (ACEs) contained by this <see cref="T:System.Security.AccessControl.CommonAcl" /> object that are associated with the specified <see cref="T:System.Security.Principal.SecurityIdentifier" /> object.</summary>
<param name="sid">The <see cref="T:System.Security.Principal.SecurityIdentifier" /> object to check for.</param>
</member>
<member name="M:System.Security.AccessControl.CommonAcl.RemoveInheritedAces">
<summary>Removes all inherited access control entries (ACEs) from this <see cref="T:System.Security.AccessControl.CommonAcl" /> object.</summary>
</member>
<member name="P:System.Security.AccessControl.CommonAcl.Revision">
<summary>Gets the revision level of the <see cref="T:System.Security.AccessControl.CommonAcl" />.</summary>
<returns>A byte value that specifies the revision level of the <see cref="T:System.Security.AccessControl.CommonAcl" />.</returns>
</member>
<member name="T:System.Security.AccessControl.CommonObjectSecurity">
<summary>Controls access to objects without direct manipulation of access control lists (ACLs). This class is the abstract base class for the <see cref="T:System.Security.AccessControl.NativeObjectSecurity" /> class.</summary>
</member>
<member name="M:System.Security.AccessControl.CommonObjectSecurity.#ctor(System.Boolean)">
<summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.CommonObjectSecurity" /> class.</summary>
<param name="isContainer">
<see langword="true" /> if the new object is a container object.</param>
</member>
<member name="M:System.Security.AccessControl.CommonObjectSecurity.AddAccessRule(System.Security.AccessControl.AccessRule)">
<summary>Adds the specified access rule to the Discretionary Access Control List (DACL) associated with this <see cref="T:System.Security.AccessControl.CommonObjectSecurity" /> object.</summary>
<param name="rule">The access rule to add.</param>
</member>
<member name="M:System.Security.AccessControl.CommonObjectSecurity.AddAuditRule(System.Security.AccessControl.AuditRule)">
<summary>Adds the specified audit rule to the System Access Control List (SACL) associated with this <see cref="T:System.Security.AccessControl.CommonObjectSecurity" /> object.</summary>
<param name="rule">The audit rule to add.</param>
</member>
<member name="M:System.Security.AccessControl.CommonObjectSecurity.GetAccessRules(System.Boolean,System.Boolean,System.Type)">
<summary>Gets a collection of the access rules associated with the specified security identifier.</summary>
<param name="includeExplicit">
<see langword="true" /> to include access rules explicitly set for the object.</param>
<param name="includeInherited">
<see langword="true" /> to include inherited access rules.</param>
<param name="targetType">Specifies whether the security identifier for which to retrieve access rules is of type T:System.Security.Principal.SecurityIdentifier or type T:System.Security.Principal.NTAccount. The value of this parameter must be a type that can be translated to the <see cref="T:System.Security.Principal.SecurityIdentifier" /> type.</param>
<returns>The collection of access rules associated with the specified <see cref="T:System.Security.Principal.SecurityIdentifier" /> object.</returns>
</member>
<member name="M:System.Security.AccessControl.CommonObjectSecurity.GetAuditRules(System.Boolean,System.Boolean,System.Type)">
<summary>Gets a collection of the audit rules associated with the specified security identifier.</summary>
<param name="includeExplicit">
<see langword="true" /> to include audit rules explicitly set for the object.</param>
<param name="includeInherited">
<see langword="true" /> to include inherited audit rules.</param>
<param name="targetType">The security identifier for which to retrieve audit rules. This must be an object that can be cast as a <see cref="T:System.Security.Principal.SecurityIdentifier" /> object.</param>
<returns>The collection of audit rules associated with the specified <see cref="T:System.Security.Principal.SecurityIdentifier" /> object.</returns>
</member>
<member name="M:System.Security.AccessControl.CommonObjectSecurity.ModifyAccess(System.Security.AccessControl.AccessControlModification,System.Security.AccessControl.AccessRule,System.Boolean@)">
<summary>Applies the specified modification to the Discretionary Access Control List (DACL) associated with this <see cref="T:System.Security.AccessControl.CommonObjectSecurity" /> object.</summary>
<param name="modification">The modification to apply to the DACL.</param>
<param name="rule">The access rule to modify.</param>
<param name="modified">
<see langword="true" /> if the DACL is successfully modified; otherwise, <see langword="false" />.</param>
<returns>
<see langword="true" /> if the DACL is successfully modified; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Security.AccessControl.CommonObjectSecurity.ModifyAudit(System.Security.AccessControl.AccessControlModification,System.Security.AccessControl.AuditRule,System.Boolean@)">
<summary>Applies the specified modification to the System Access Control List (SACL) associated with this <see cref="T:System.Security.AccessControl.CommonObjectSecurity" /> object.</summary>
<param name="modification">The modification to apply to the SACL.</param>
<param name="rule">The audit rule to modify.</param>
<param name="modified">
<see langword="true" /> if the SACL is successfully modified; otherwise, <see langword="false" />.</param>
<returns>
<see langword="true" /> if the SACL is successfully modified; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Security.AccessControl.CommonObjectSecurity.RemoveAccessRule(System.Security.AccessControl.AccessRule)">
<summary>Removes access rules that contain the same security identifier and access mask as the specified access rule from the Discretionary Access Control List (DACL) associated with this <see cref="T:System.Security.AccessControl.CommonObjectSecurity" /> object.</summary>
<param name="rule">The access rule to remove.</param>
<returns>
<see langword="true" /> if the access rule was successfully removed; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Security.AccessControl.CommonObjectSecurity.RemoveAccessRuleAll(System.Security.AccessControl.AccessRule)">
<summary>Removes all access rules that have the same security identifier as the specified access rule from the Discretionary Access Control List (DACL) associated with this <see cref="T:System.Security.AccessControl.CommonObjectSecurity" /> object.</summary>
<param name="rule">The access rule to remove.</param>
</member>
<member name="M:System.Security.AccessControl.CommonObjectSecurity.RemoveAccessRuleSpecific(System.Security.AccessControl.AccessRule)">
<summary>Removes all access rules that exactly match the specified access rule from the Discretionary Access Control List (DACL) associated with this <see cref="T:System.Security.AccessControl.CommonObjectSecurity" /> object.</summary>
<param name="rule">The access rule to remove.</param>
</member>
<member name="M:System.Security.AccessControl.CommonObjectSecurity.RemoveAuditRule(System.Security.AccessControl.AuditRule)">
<summary>Removes audit rules that contain the same security identifier and access mask as the specified audit rule from the System Access Control List (SACL) associated with this <see cref="T:System.Security.AccessControl.CommonObjectSecurity" /> object.</summary>
<param name="rule">The audit rule to remove.</param>
<returns>
<see langword="true" /> if the audit rule was successfully removed; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Security.AccessControl.CommonObjectSecurity.RemoveAuditRuleAll(System.Security.AccessControl.AuditRule)">
<summary>Removes all audit rules that have the same security identifier as the specified audit rule from the System Access Control List (SACL) associated with this <see cref="T:System.Security.AccessControl.CommonObjectSecurity" /> object.</summary>
<param name="rule">The audit rule to remove.</param>
</member>
<member name="M:System.Security.AccessControl.CommonObjectSecurity.RemoveAuditRuleSpecific(System.Security.AccessControl.AuditRule)">
<summary>Removes all audit rules that exactly match the specified audit rule from the System Access Control List (SACL) associated with this <see cref="T:System.Security.AccessControl.CommonObjectSecurity" /> object.</summary>
<param name="rule">The audit rule to remove.</param>
</member>
<member name="M:System.Security.AccessControl.CommonObjectSecurity.ResetAccessRule(System.Security.AccessControl.AccessRule)">
<summary>Removes all access rules in the Discretionary Access Control List (DACL) associated with this <see cref="T:System.Security.AccessControl.CommonObjectSecurity" /> object and then adds the specified access rule.</summary>
<param name="rule">The access rule to reset.</param>
</member>
<member name="M:System.Security.AccessControl.CommonObjectSecurity.SetAccessRule(System.Security.AccessControl.AccessRule)">
<summary>Removes all access rules that contain the same security identifier and qualifier as the specified access rule in the Discretionary Access Control List (DACL) associated with this <see cref="T:System.Security.AccessControl.CommonObjectSecurity" /> object and then adds the specified access rule.</summary>
<param name="rule">The access rule to set.</param>
</member>
<member name="M:System.Security.AccessControl.CommonObjectSecurity.SetAuditRule(System.Security.AccessControl.AuditRule)">
<summary>Removes all audit rules that contain the same security identifier and qualifier as the specified audit rule in the System Access Control List (SACL) associated with this <see cref="T:System.Security.AccessControl.CommonObjectSecurity" /> object and then adds the specified audit rule.</summary>
<param name="rule">The audit rule to set.</param>
</member>
<member name="T:System.Security.AccessControl.CommonSecurityDescriptor">
<summary>Represents a security descriptor. A security descriptor includes an owner, a primary group, a Discretionary Access Control List (DACL), and a System Access Control List (SACL).</summary>
</member>
<member name="M:System.Security.AccessControl.CommonSecurityDescriptor.#ctor(System.Boolean,System.Boolean,System.Byte[],System.Int32)">
<summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> class from the specified array of byte values.</summary>
<param name="isContainer">
<see langword="true" /> if the new security descriptor is associated with a container object.</param>
<param name="isDS">
<see langword="true" /> if the new security descriptor is associated with a directory object.</param>
<param name="binaryForm">The array of byte values from which to create the new <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object.</param>
<param name="offset">The offset in the <paramref name="binaryForm" /> array at which to begin copying.</param>
</member>
<member name="M:System.Security.AccessControl.CommonSecurityDescriptor.#ctor(System.Boolean,System.Boolean,System.Security.AccessControl.ControlFlags,System.Security.Principal.SecurityIdentifier,System.Security.Principal.SecurityIdentifier,System.Security.AccessControl.SystemAcl,System.Security.AccessControl.DiscretionaryAcl)">
<summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> class from the specified information.</summary>
<param name="isContainer">
<see langword="true" /> if the new security descriptor is associated with a container object.</param>
<param name="isDS">
<see langword="true" /> if the new security descriptor is associated with a directory object.</param>
<param name="flags">Flags that specify behavior of the new <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object.</param>
<param name="owner">The owner for the new <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object.</param>
<param name="group">The primary group for the new <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object.</param>
<param name="systemAcl">The System Access Control List (SACL) for the new <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object.</param>
<param name="discretionaryAcl">The Discretionary Access Control List (DACL) for the new <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object.</param>
</member>
<member name="M:System.Security.AccessControl.CommonSecurityDescriptor.#ctor(System.Boolean,System.Boolean,System.Security.AccessControl.RawSecurityDescriptor)">
<summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> class from the specified <see cref="T:System.Security.AccessControl.RawSecurityDescriptor" /> object.</summary>
<param name="isContainer">
<see langword="true" /> if the new security descriptor is associated with a container object.</param>
<param name="isDS">
<see langword="true" /> if the new security descriptor is associated with a directory object.</param>
<param name="rawSecurityDescriptor">The <see cref="T:System.Security.AccessControl.RawSecurityDescriptor" /> object from which to create the new <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object.</param>
</member>
<member name="M:System.Security.AccessControl.CommonSecurityDescriptor.#ctor(System.Boolean,System.Boolean,System.String)">
<summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> class from the specified Security Descriptor Definition Language (SDDL) string.</summary>
<param name="isContainer">
<see langword="true" /> if the new security descriptor is associated with a container object.</param>
<param name="isDS">
<see langword="true" /> if the new security descriptor is associated with a directory object.</param>
<param name="sddlForm">The SDDL string from which to create the new <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object.</param>
</member>
<member name="M:System.Security.AccessControl.CommonSecurityDescriptor.AddDiscretionaryAcl(System.Byte,System.Int32)">
<summary>Sets the <see cref="P:System.Security.AccessControl.CommonSecurityDescriptor.DiscretionaryAcl" /> property for this <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> instance and sets the <see cref="F:System.Security.AccessControl.ControlFlags.DiscretionaryAclPresent" /> flag.</summary>
<param name="revision">The revision level of the new <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> object.</param>
<param name="trusted">The number of Access Control Entries (ACEs) this <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> object can contain. This number is to be used only as a hint.</param>
</member>
<member name="M:System.Security.AccessControl.CommonSecurityDescriptor.AddSystemAcl(System.Byte,System.Int32)">
<summary>Sets the <see cref="P:System.Security.AccessControl.CommonSecurityDescriptor.SystemAcl" /> property for this <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> instance and sets the <see cref="F:System.Security.AccessControl.ControlFlags.SystemAclPresent" /> flag.</summary>
<param name="revision">The revision level of the new <see cref="T:System.Security.AccessControl.SystemAcl" /> object.</param>
<param name="trusted">The number of Access Control Entries (ACEs) this <see cref="T:System.Security.AccessControl.SystemAcl" /> object can contain. This number should only be used as a hint.</param>
</member>
<member name="P:System.Security.AccessControl.CommonSecurityDescriptor.ControlFlags">
<summary>Gets values that specify behavior of the <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object.</summary>
<returns>One or more values of the <see cref="T:System.Security.AccessControl.ControlFlags" /> enumeration combined with a logical OR operation.</returns>
</member>
<member name="P:System.Security.AccessControl.CommonSecurityDescriptor.DiscretionaryAcl">
<summary>Gets or sets the discretionary access control list (DACL) for this <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object. The DACL contains access rules.</summary>
<returns>The DACL for this <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object.</returns>
</member>
<member name="P:System.Security.AccessControl.CommonSecurityDescriptor.Group">
<summary>Gets or sets the primary group for this <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object.</summary>
<returns>The primary group for this <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object.</returns>
</member>
<member name="P:System.Security.AccessControl.CommonSecurityDescriptor.IsContainer">
<summary>Gets a Boolean value that specifies whether the object associated with this <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object is a container object.</summary>
<returns>
<see langword="true" /> if the object associated with this <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object is a container object; otherwise, <see langword="false" />.</returns>
</member>
<member name="P:System.Security.AccessControl.CommonSecurityDescriptor.IsDiscretionaryAclCanonical">
<summary>Gets a Boolean value that specifies whether the Discretionary Access Control List (DACL) associated with this <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object is in canonical order.</summary>
<returns>
<see langword="true" /> if the DACL associated with this <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object is in canonical order; otherwise, <see langword="false" />.</returns>
</member>
<member name="P:System.Security.AccessControl.CommonSecurityDescriptor.IsDS">
<summary>Gets a Boolean value that specifies whether the object associated with this <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object is a directory object.</summary>
<returns>
<see langword="true" /> if the object associated with this <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object is a directory object; otherwise, <see langword="false" />.</returns>
</member>
<member name="P:System.Security.AccessControl.CommonSecurityDescriptor.IsSystemAclCanonical">
<summary>Gets a Boolean value that specifies whether the System Access Control List (SACL) associated with this <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object is in canonical order.</summary>
<returns>
<see langword="true" /> if the SACL associated with this <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object is in canonical order; otherwise, <see langword="false" />.</returns>
</member>
<member name="P:System.Security.AccessControl.CommonSecurityDescriptor.Owner">
<summary>Gets or sets the owner of the object associated with this <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object.</summary>
<returns>The owner of the object associated with this <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object.</returns>
</member>
<member name="M:System.Security.AccessControl.CommonSecurityDescriptor.PurgeAccessControl(System.Security.Principal.SecurityIdentifier)">
<summary>Removes all access rules for the specified security identifier from the Discretionary Access Control List (DACL) associated with this <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object.</summary>
<param name="sid">The security identifier for which to remove access rules.</param>
</member>
<member name="M:System.Security.AccessControl.CommonSecurityDescriptor.PurgeAudit(System.Security.Principal.SecurityIdentifier)">
<summary>Removes all audit rules for the specified security identifier from the System Access Control List (SACL) associated with this <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object.</summary>
<param name="sid">The security identifier for which to remove audit rules.</param>
</member>
<member name="M:System.Security.AccessControl.CommonSecurityDescriptor.SetDiscretionaryAclProtection(System.Boolean,System.Boolean)">
<summary>Sets the inheritance protection for the Discretionary Access Control List (DACL) associated with this <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object. DACLs that are protected do not inherit access rules from parent containers.</summary>
<param name="isProtected">
<see langword="true" /> to protect the DACL from inheritance.</param>
<param name="preserveInheritance">
<see langword="true" /> to keep inherited access rules in the DACL; <see langword="false" /> to remove inherited access rules from the DACL.</param>
</member>
<member name="M:System.Security.AccessControl.CommonSecurityDescriptor.SetSystemAclProtection(System.Boolean,System.Boolean)">
<summary>Sets the inheritance protection for the System Access Control List (SACL) associated with this <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object. SACLs that are protected do not inherit audit rules from parent containers.</summary>
<param name="isProtected">
<see langword="true" /> to protect the SACL from inheritance.</param>
<param name="preserveInheritance">
<see langword="true" /> to keep inherited audit rules in the SACL; <see langword="false" /> to remove inherited audit rules from the SACL.</param>
</member>
<member name="P:System.Security.AccessControl.CommonSecurityDescriptor.SystemAcl">
<summary>Gets or sets the System Access Control List (SACL) for this <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object. The SACL contains audit rules.</summary>
<returns>The SACL for this <see cref="T:System.Security.AccessControl.CommonSecurityDescriptor" /> object.</returns>
</member>
<member name="T:System.Security.AccessControl.CompoundAce">
<summary>Represents a compound Access Control Entry (ACE).</summary>
</member>
<member name="M:System.Security.AccessControl.CompoundAce.#ctor(System.Security.AccessControl.AceFlags,System.Int32,System.Security.AccessControl.CompoundAceType,System.Security.Principal.SecurityIdentifier)">
<summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.CompoundAce" /> class.</summary>
<param name="flags">Contains flags that specify information about the inheritance, inheritance propagation, and auditing conditions for the new Access Control Entry (ACE).</param>
<param name="accessMask">The access mask for the ACE.</param>
<param name="compoundAceType">A value from the <see cref="T:System.Security.AccessControl.CompoundAceType" /> enumeration.</param>
<param name="sid">The <see cref="T:System.Security.Principal.SecurityIdentifier" /> associated with the new ACE.</param>
</member>
<member name="P:System.Security.AccessControl.CompoundAce.BinaryLength">
<summary>Gets the length, in bytes, of the binary representation of the current <see cref="T:System.Security.AccessControl.CompoundAce" /> object. This length should be used before marshaling the ACL into a binary array with the <see cref="M:System.Security.AccessControl.CompoundAce.GetBinaryForm(System.Byte[],System.Int32)" /> method.</summary>
<returns>The length, in bytes, of the binary representation of the current <see cref="T:System.Security.AccessControl.CompoundAce" /> object.</returns>
</member>
<member name="P:System.Security.AccessControl.CompoundAce.CompoundAceType">
<summary>Gets or sets the type of this <see cref="T:System.Security.AccessControl.CompoundAce" /> object.</summary>
<returns>The type of this <see cref="T:System.Security.AccessControl.CompoundAce" /> object.</returns>
</member>
<member name="M:System.Security.AccessControl.CompoundAce.GetBinaryForm(System.Byte[],System.Int32)">
<summary>Marshals the contents of the <see cref="T:System.Security.AccessControl.CompoundAce" /> object into the specified byte array beginning at the specified offset.</summary>
<param name="binaryForm">The byte array into which the contents of the <see cref="T:System.Security.AccessControl.CompoundAce" /> is marshaled.</param>
<param name="offset">The offset at which to start marshaling.</param>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="offset" /> is negative or too high to allow the entire <see cref="T:System.Security.AccessControl.CompoundAce" /> to be copied into <paramref name="array" />.</exception>
</member>
<member name="T:System.Security.AccessControl.CompoundAceType">
<summary>Specifies the type of a <see cref="T:System.Security.AccessControl.CompoundAce" /> object.</summary>
</member>
<member name="F:System.Security.AccessControl.CompoundAceType.Impersonation">
<summary>The <see cref="T:System.Security.AccessControl.CompoundAce" /> object is used for impersonation.</summary>
</member>
<member name="T:System.Security.AccessControl.ControlFlags">
<summary>These flags affect the security descriptor behavior.</summary>
</member>
<member name="F:System.Security.AccessControl.ControlFlags.DiscretionaryAclAutoInherited">
<summary>Specifies that the Discretionary Access Control List (DACL) has been automatically inherited from the parent. Set by resource managers only.</summary>
</member>
<member name="F:System.Security.AccessControl.ControlFlags.DiscretionaryAclAutoInheritRequired">
<summary>Ignored.</summary>
</member>
<member name="F:System.Security.AccessControl.ControlFlags.DiscretionaryAclDefaulted">
<summary>Specifies that the DACL was obtained by a defaulting mechanism. Set by resource managers only.</summary>
</member>
<member name="F:System.Security.AccessControl.ControlFlags.DiscretionaryAclPresent">
<summary>Specifies that the DACL is not <see langword="null" />. Set by resource managers or users.</summary>
</member>
<member name="F:System.Security.AccessControl.ControlFlags.DiscretionaryAclProtected">
<summary>Specifies that the resource manager prevents auto-inheritance. Set by resource managers or users.</summary>
</member>
<member name="F:System.Security.AccessControl.ControlFlags.DiscretionaryAclUntrusted">
<summary>Ignored.</summary>
</member>
<member name="F:System.Security.AccessControl.ControlFlags.GroupDefaulted">
<summary>Specifies that the group <see cref="T:System.Security.Principal.SecurityIdentifier" /> was obtained by a defaulting mechanism. Set by resource managers only; should not be set by callers.</summary>
</member>
<member name="F:System.Security.AccessControl.ControlFlags.None">
<summary>No control flags.</summary>
</member>
<member name="F:System.Security.AccessControl.ControlFlags.OwnerDefaulted">
<summary>Specifies that the owner <see cref="T:System.Security.Principal.SecurityIdentifier" /> was obtained by a defaulting mechanism. Set by resource managers only; should not be set by callers.</summary>
</member>
<member name="F:System.Security.AccessControl.ControlFlags.RMControlValid">
<summary>Specifies that the contents of the Reserved field are valid.</summary>
</member>
<member name="F:System.Security.AccessControl.ControlFlags.SelfRelative">
<summary>Specifies that the security descriptor binary representation is in the self-relative format. This flag is always set.</summary>
</member>
<member name="F:System.Security.AccessControl.ControlFlags.ServerSecurity">
<summary>Ignored.</summary>
</member>
<member name="F:System.Security.AccessControl.ControlFlags.SystemAclAutoInherited">
<summary>Specifies that the System Access Control List (SACL) has been automatically inherited from the parent. Set by resource managers only.</summary>
</member>
<member name="F:System.Security.AccessControl.ControlFlags.SystemAclAutoInheritRequired">
<summary>Ignored.</summary>
</member>
<member name="F:System.Security.AccessControl.ControlFlags.SystemAclDefaulted">
<summary>Specifies that the SACL was obtained by a defaulting mechanism. Set by resource managers only.</summary>
</member>
<member name="F:System.Security.AccessControl.ControlFlags.SystemAclPresent">
<summary>Specifies that the SACL is not <see langword="null" />. Set by resource managers or users.</summary>
</member>
<member name="F:System.Security.AccessControl.ControlFlags.SystemAclProtected">
<summary>Specifies that the resource manager prevents auto-inheritance. Set by resource managers or users.</summary>
</member>
<member name="T:System.Security.AccessControl.CustomAce">
<summary>Represents an Access Control Entry (ACE) that is not defined by one of the members of the <see cref="T:System.Security.AccessControl.AceType" /> enumeration.</summary>
</member>
<member name="M:System.Security.AccessControl.CustomAce.#ctor(System.Security.AccessControl.AceType,System.Security.AccessControl.AceFlags,System.Byte[])">
<summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.CustomAce" /> class.</summary>
<param name="type">Type of the new Access Control Entry (ACE). This value must be greater than <see cref="F:System.Security.AccessControl.AceType.MaxDefinedAceType" />.</param>
<param name="flags">Flags that specify information about the inheritance, inheritance propagation, and auditing conditions for the new ACE.</param>
<param name="opaque">An array of byte values that contains the data for the new ACE. This value can be <see langword="null" />. The length of this array must not be greater than the value of the <see cref="F:System.Security.AccessControl.CustomAce.MaxOpaqueLength" /> field, and must be a multiple of four.</param>
<exception cref="T:System.ArgumentOutOfRangeException">The value of the <paramref name="type" /> parameter is not greater than <see cref="F:System.Security.AccessControl.AceType.MaxDefinedAceType" /> or the length of the <paramref name="opaque" /> array is either greater than the value of the <see cref="F:System.Security.AccessControl.CustomAce.MaxOpaqueLength" /> field or not a multiple of four.</exception>
</member>
<member name="P:System.Security.AccessControl.CustomAce.BinaryLength">
<summary>Gets the length, in bytes, of the binary representation of the current <see cref="T:System.Security.AccessControl.CustomAce" /> object. This length should be used before marshaling the ACL into a binary array with the <see cref="M:System.Security.AccessControl.CustomAce.GetBinaryForm(System.Byte[],System.Int32)" /> method.</summary>
<returns>The length, in bytes, of the binary representation of the current <see cref="T:System.Security.AccessControl.CustomAce" /> object.</returns>
</member>
<member name="M:System.Security.AccessControl.CustomAce.GetBinaryForm(System.Byte[],System.Int32)">
<summary>Marshals the contents of the <see cref="T:System.Security.AccessControl.CustomAce" /> object into the specified byte array beginning at the specified offset.</summary>
<param name="binaryForm">The byte array into which the contents of the <see cref="T:System.Security.AccessControl.CustomAce" /> is marshaled.</param>
<param name="offset">The offset at which to start marshaling.</param>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="offset" /> is negative or too high to allow the entire <see cref="T:System.Security.AccessControl.CustomAce" /> to be copied into <paramref name="array" />.</exception>
</member>
<member name="M:System.Security.AccessControl.CustomAce.GetOpaque">
<summary>Returns the opaque data associated with this <see cref="T:System.Security.AccessControl.CustomAce" /> object.</summary>
<returns>An array of byte values that represents the opaque data associated with this <see cref="T:System.Security.AccessControl.CustomAce" /> object.</returns>
</member>
<member name="F:System.Security.AccessControl.CustomAce.MaxOpaqueLength">
<summary>Returns the maximum allowed length of an opaque data blob for this <see cref="T:System.Security.AccessControl.CustomAce" /> object.</summary>
</member>
<member name="P:System.Security.AccessControl.CustomAce.OpaqueLength">
<summary>Gets the length of the opaque data associated with this <see cref="T:System.Security.AccessControl.CustomAce" /> object.</summary>
<returns>The length of the opaque callback data.</returns>
</member>
<member name="M:System.Security.AccessControl.CustomAce.SetOpaque(System.Byte[])">
<summary>Sets the opaque callback data associated with this <see cref="T:System.Security.AccessControl.CustomAce" /> object.</summary>
<param name="opaque">An array of byte values that represents the opaque callback data for this <see cref="T:System.Security.AccessControl.CustomAce" /> object.</param>
</member>
<member name="T:System.Security.AccessControl.DiscretionaryAcl">
<summary>Represents a Discretionary Access Control List (DACL).</summary>
</member>
<member name="M:System.Security.AccessControl.DiscretionaryAcl.#ctor(System.Boolean,System.Boolean,System.Byte,System.Int32)">
<summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> class with the specified values.</summary>
<param name="isContainer">
<see langword="true" /> if the new <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> object is a container.</param>
<param name="isDS">
<see langword="true" /> if the new <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> object is a directory object Access Control List (ACL).</param>
<param name="revision">The revision level of the new <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> object.</param>
<param name="capacity">The number of Access Control Entries (ACEs) this <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> object can contain. This number is to be used only as a hint.</param>
</member>
<member name="M:System.Security.AccessControl.DiscretionaryAcl.#ctor(System.Boolean,System.Boolean,System.Int32)">
<summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> class with the specified values.</summary>
<param name="isContainer">
<see langword="true" /> if the new <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> object is a container.</param>
<param name="isDS">
<see langword="true" /> if the new <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> object is a directory object Access Control List (ACL).</param>
<param name="capacity">The number of Access Control Entries (ACEs) this <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> object can contain. This number is to be used only as a hint.</param>
</member>
<member name="M:System.Security.AccessControl.DiscretionaryAcl.#ctor(System.Boolean,System.Boolean,System.Security.AccessControl.RawAcl)">
<summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> class with the specified values from the specified <see cref="T:System.Security.AccessControl.RawAcl" /> object.</summary>
<param name="isContainer">
<see langword="true" /> if the new <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> object is a container.</param>
<param name="isDS">
<see langword="true" /> if the new <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> object is a directory object Access Control List (ACL).</param>
<param name="rawAcl">The underlying <see cref="T:System.Security.AccessControl.RawAcl" /> object for the new <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> object. Specify <see langword="null" /> to create an empty ACL.</param>
</member>
<member name="M:System.Security.AccessControl.DiscretionaryAcl.AddAccess(System.Security.AccessControl.AccessControlType,System.Security.Principal.SecurityIdentifier,System.Int32,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags)">
<summary>Adds an Access Control Entry (ACE) with the specified settings to the current <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> object.</summary>
<param name="accessType">The type of access control (allow or deny) to add.</param>
<param name="sid">The <see cref="T:System.Security.Principal.SecurityIdentifier" /> for which to add an ACE.</param>
<param name="accessMask">The access rule for the new ACE.</param>
<param name="inheritanceFlags">Flags that specify the inheritance properties of the new ACE.</param>
<param name="propagationFlags">Flags that specify the inheritance propagation properties for the new ACE.</param>
</member>
<member name="M:System.Security.AccessControl.DiscretionaryAcl.AddAccess(System.Security.AccessControl.AccessControlType,System.Security.Principal.SecurityIdentifier,System.Int32,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.ObjectAceFlags,System.Guid,System.Guid)">
<summary>Adds an Access Control Entry (ACE) with the specified settings to the current <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> object. Use this method for directory object Access Control Lists (ACLs) when specifying the object type or the inherited object type for the new ACE.</summary>
<param name="accessType">The type of access control (allow or deny) to add.</param>
<param name="sid">The <see cref="T:System.Security.Principal.SecurityIdentifier" /> for which to add an ACE.</param>
<param name="accessMask">The access rule for the new ACE.</param>
<param name="inheritanceFlags">Flags that specify the inheritance properties of the new ACE.</param>
<param name="propagationFlags">Flags that specify the inheritance propagation properties for the new ACE.</param>
<param name="objectFlags">Flags that specify if the <paramref name="objectType" /> and <paramref name="inheritedObjectType" /> parameters contain non-<see langword="null" /> values.</param>
<param name="objectType">The identity of the class of objects to which the new ACE applies.</param>
<param name="inheritedObjectType">The identity of the class of child objects which can inherit the new ACE.</param>
</member>
<member name="M:System.Security.AccessControl.DiscretionaryAcl.AddAccess(System.Security.AccessControl.AccessControlType,System.Security.Principal.SecurityIdentifier,System.Security.AccessControl.ObjectAccessRule)">
<summary>Adds an Access Control Entry (ACE) with the specified settings to the current <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> object.</summary>
<param name="accessType">The type of access control (allow or deny) to add.</param>
<param name="sid">The <see cref="T:System.Security.Principal.SecurityIdentifier" /> for which to add an ACE.</param>
<param name="rule">The <see cref="T:System.Security.AccessControl.ObjectAccessRule" /> for the new access.</param>
</member>
<member name="M:System.Security.AccessControl.DiscretionaryAcl.RemoveAccess(System.Security.AccessControl.AccessControlType,System.Security.Principal.SecurityIdentifier,System.Int32,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags)">
<summary>Removes the specified access control rule from the current <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> object.</summary>
<param name="accessType">The type of access control (allow or deny) to remove.</param>
<param name="sid">The <see cref="T:System.Security.Principal.SecurityIdentifier" /> for which to remove an access control rule.</param>
<param name="accessMask">The access mask for the rule to be removed.</param>
<param name="inheritanceFlags">Flags that specify the inheritance properties of the rule to be removed.</param>
<param name="propagationFlags">Flags that specify the inheritance propagation properties for the rule to be removed.</param>
<returns>
<see langword="true" /> if this method successfully removes the specified access; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Security.AccessControl.DiscretionaryAcl.RemoveAccess(System.Security.AccessControl.AccessControlType,System.Security.Principal.SecurityIdentifier,System.Int32,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.ObjectAceFlags,System.Guid,System.Guid)">
<summary>Removes the specified access control rule from the current <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> object. Use this method for directory object Access Control Lists (ACLs) when specifying the object type or the inherited object type.</summary>
<param name="accessType">The type of access control (allow or deny) to remove.</param>
<param name="sid">The <see cref="T:System.Security.Principal.SecurityIdentifier" /> for which to remove an access control rule.</param>
<param name="accessMask">The access mask for the access control rule to be removed.</param>
<param name="inheritanceFlags">Flags that specify the inheritance properties of the access control rule to be removed.</param>
<param name="propagationFlags">Flags that specify the inheritance propagation properties for the access control rule to be removed.</param>
<param name="objectFlags">Flags that specify if the <paramref name="objectType" /> and <paramref name="inheritedObjectType" /> parameters contain non-<see langword="null" /> values.</param>
<param name="objectType">The identity of the class of objects to which the removed access control rule applies.</param>
<param name="inheritedObjectType">The identity of the class of child objects which can inherit the removed access control rule.</param>
<returns>
<see langword="true" /> if this method successfully removes the specified access; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Security.AccessControl.DiscretionaryAcl.RemoveAccess(System.Security.AccessControl.AccessControlType,System.Security.Principal.SecurityIdentifier,System.Security.AccessControl.ObjectAccessRule)">
<summary>Removes the specified access control rule from the current <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> object.</summary>
<param name="accessType">The type of access control (allow or deny) to remove.</param>
<param name="sid">The <see cref="T:System.Security.Principal.SecurityIdentifier" /> for which to remove an access control rule.</param>
<param name="rule">The <see cref="T:System.Security.AccessControl.ObjectAccessRule" /> for which to remove access.</param>
<returns>Returns <see cref="T:System.Boolean" />.</returns>
</member>
<member name="M:System.Security.AccessControl.DiscretionaryAcl.RemoveAccessSpecific(System.Security.AccessControl.AccessControlType,System.Security.Principal.SecurityIdentifier,System.Int32,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags)">
<summary>Removes the specified Access Control Entry (ACE) from the current <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> object.</summary>
<param name="accessType">The type of access control (allow or deny) to remove.</param>
<param name="sid">The <see cref="T:System.Security.Principal.SecurityIdentifier" /> for which to remove an ACE.</param>
<param name="accessMask">The access mask for the ACE to be removed.</param>
<param name="inheritanceFlags">Flags that specify the inheritance properties of the ACE to be removed.</param>
<param name="propagationFlags">Flags that specify the inheritance propagation properties for the ACE to be removed.</param>
</member>
<member name="M:System.Security.AccessControl.DiscretionaryAcl.RemoveAccessSpecific(System.Security.AccessControl.AccessControlType,System.Security.Principal.SecurityIdentifier,System.Int32,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.ObjectAceFlags,System.Guid,System.Guid)">
<summary>Removes the specified Access Control Entry (ACE) from the current <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> object. Use this method for directory object Access Control Lists (ACLs) when specifying the object type or the inherited object type for the ACE to be removed.</summary>
<param name="accessType">The type of access control (allow or deny) to remove.</param>
<param name="sid">The <see cref="T:System.Security.Principal.SecurityIdentifier" /> for which to remove an ACE.</param>
<param name="accessMask">The access mask for the ACE to be removed.</param>
<param name="inheritanceFlags">Flags that specify the inheritance properties of the ACE to be removed.</param>
<param name="propagationFlags">Flags that specify the inheritance propagation properties for the ACE to be removed.</param>
<param name="objectFlags">Flags that specify if the <paramref name="objectType" /> and <paramref name="inheritedObjectType" /> parameters contain non-<see langword="null" /> values.</param>
<param name="objectType">The identity of the class of objects to which the removed ACE applies.</param>
<param name="inheritedObjectType">The identity of the class of child objects which can inherit the removed ACE.</param>
</member>
<member name="M:System.Security.AccessControl.DiscretionaryAcl.RemoveAccessSpecific(System.Security.AccessControl.AccessControlType,System.Security.Principal.SecurityIdentifier,System.Security.AccessControl.ObjectAccessRule)">
<summary>Removes the specified Access Control Entry (ACE) from the current <see cref="T:System.Security.AccessControl.DiscretionaryAcl" /> object.</summary>
<param name="accessType">The type of access control (allow or deny) to remove.</param>
<param name="sid">The <see cref="T:System.Security.Principal.SecurityIdentifier" /> for which to remove an ACE.</param>
<param name="rule">The <see cref="T:System.Security.AccessControl.ObjectAccessRule" /> for which to remove access.</param>
</member>
<member name="M:System.Security.AccessControl.DiscretionaryAcl.SetAccess(System.Security.AccessControl.AccessControlType,System.Security.Principal.SecurityIdentifier,System.Int32,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags)">
<summary>Sets the specified access control for the specified <see cref="T:System.Security.Principal.SecurityIdentifier" /> object.</summary>
<param name="accessType">The type of access control (allow or deny) to set.</param>
<param name="sid">The <see cref="T:System.Security.Principal.SecurityIdentifier" /> for which to set an ACE.</param>
<param name="accessMask">The access rule for the new ACE.</param>
<param name="inheritanceFlags">Flags that specify the inheritance properties of the new ACE.</param>
<param name="propagationFlags">Flags that specify the inheritance propagation properties for the new ACE.</param>
</member>
<member name="M:System.Security.AccessControl.DiscretionaryAcl.SetAccess(System.Security.AccessControl.AccessControlType,System.Security.Principal.SecurityIdentifier,System.Int32,System.Security.AccessControl.InheritanceFlags,System.Security.AccessControl.PropagationFlags,System.Security.AccessControl.ObjectAceFlags,System.Guid,System.Guid)">
<summary>Sets the specified access control for the specified <see cref="T:System.Security.Principal.SecurityIdentifier" /> object.</summary>
<param name="accessType">The type of access control (allow or deny) to set.</param>
<param name="sid">The <see cref="T:System.Security.Principal.SecurityIdentifier" /> for which to set an ACE.</param>
<param name="accessMask">The access rule for the new ACE.</param>
<param name="inheritanceFlags">Flags that specify the inheritance properties of the new ACE.</param>
<param name="propagationFlags">Flags that specify the inheritance propagation properties for the new ACE.</param>
<param name="objectFlags">Flags that specify if the <paramref name="objectType" /> and <paramref name="inheritedObjectType" /> parameters contain non-<see langword="null" /> values.</param>
<param name="objectType">The identity of the class of objects to which the new ACE applies.</param>
<param name="inheritedObjectType">The identity of the class of child objects which can inherit the new ACE.</param>
</member>
<member name="M:System.Security.AccessControl.DiscretionaryAcl.SetAccess(System.Security.AccessControl.AccessControlType,System.Security.Principal.SecurityIdentifier,System.Security.AccessControl.ObjectAccessRule)">
<summary>Sets the specified access control for the specified <see cref="T:System.Security.Principal.SecurityIdentifier" /> object.</summary>
<param name="accessType">The type of access control (allow or deny) to set.</param>
<param name="sid">The <see cref="T:System.Security.Principal.SecurityIdentifier" /> for which to set an ACE.</param>
<param name="rule">The <see cref="T:System.Security.AccessControl.ObjectAccessRule" /> for which to set access.</param>
</member>
<member name="T:System.Security.AccessControl.GenericAce">
<summary>Represents an Access Control Entry (ACE), and is the base class for all other ACE classes.</summary>
</member>
<member name="P:System.Security.AccessControl.GenericAce.AceFlags">
<summary>Gets or sets the <see cref="T:System.Security.AccessControl.AceFlags" /> associated with this <see cref="T:System.Security.AccessControl.GenericAce" /> object.</summary>
<returns>The <see cref="T:System.Security.AccessControl.AceFlags" /> associated with this <see cref="T:System.Security.AccessControl.GenericAce" /> object.</returns>
</member>
<member name="P:System.Security.AccessControl.GenericAce.AceType">
<summary>Gets the type of this Access Control Entry (ACE).</summary>
<returns>The type of this ACE.</returns>
</member>
<member name="P:System.Security.AccessControl.GenericAce.AuditFlags">
<summary>Gets the audit information associated with this Access Control Entry (ACE).</summary>
<returns>The audit information associated with this Access Control Entry (ACE).</returns>
</member>
<member name="P:System.Security.AccessControl.GenericAce.BinaryLength">
<summary>Gets the length, in bytes, of the binary representation of the current <see cref="T:System.Security.AccessControl.GenericAce" /> object. This length should be used before marshaling the ACL into a binary array with the <see cref="M:System.Security.AccessControl.GenericAce.GetBinaryForm(System.Byte[],System.Int32)" /> method.</summary>
<returns>The length, in bytes, of the binary representation of the current <see cref="T:System.Security.AccessControl.GenericAce" /> object.</returns>
</member>
<member name="M:System.Security.AccessControl.GenericAce.Copy">
<summary>Creates a deep copy of this Access Control Entry (ACE).</summary>
<returns>The <see cref="T:System.Security.AccessControl.GenericAce" /> object that this method creates.</returns>
</member>
<member name="M:System.Security.AccessControl.GenericAce.CreateFromBinaryForm(System.Byte[],System.Int32)">
<summary>Creates a <see cref="T:System.Security.AccessControl.GenericAce" /> object from the specified binary data.</summary>
<param name="binaryForm">The binary data from which to create the new <see cref="T:System.Security.AccessControl.GenericAce" /> object.</param>
<param name="offset">The offset at which to begin unmarshaling.</param>
<returns>The <see cref="T:System.Security.AccessControl.GenericAce" /> object this method creates.</returns>
</member>
<member name="M:System.Security.AccessControl.GenericAce.Equals(System.Object)">
<summary>Determines whether the specified <see cref="T:System.Security.AccessControl.GenericAce" /> object is equal to the current <see cref="T:System.Security.AccessControl.GenericAce" /> object.</summary>
<param name="o">The <see cref="T:System.Security.AccessControl.GenericAce" /> object to compare to the current <see cref="T:System.Security.AccessControl.GenericAce" /> object.</param>
<returns>
<see langword="true" /> if the specified <see cref="T:System.Security.AccessControl.GenericAce" /> object is equal to the current <see cref="T:System.Security.AccessControl.GenericAce" /> object; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Security.AccessControl.GenericAce.GetBinaryForm(System.Byte[],System.Int32)">
<summary>Marshals the contents of the <see cref="T:System.Security.AccessControl.GenericAce" /> object into the specified byte array beginning at the specified offset.</summary>
<param name="binaryForm">The byte array into which the contents of the <see cref="T:System.Security.AccessControl.GenericAce" /> is marshaled.</param>
<param name="offset">The offset at which to start marshaling.</param>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="offset" /> is negative or too high to allow the entire <see cref="T:System.Security.AccessControl.GenericAcl" /> to be copied into <paramref name="array" />.</exception>
</member>
<member name="M:System.Security.AccessControl.GenericAce.GetHashCode">
<summary>Serves as a hash function for the <see cref="T:System.Security.AccessControl.GenericAce" /> class. The <see cref="M:System.Security.AccessControl.GenericAce.GetHashCode" /> method is suitable for use in hashing algorithms and data structures like a hash table.</summary>
<returns>A hash code for the current <see cref="T:System.Security.AccessControl.GenericAce" /> object.</returns>
</member>
<member name="P:System.Security.AccessControl.GenericAce.InheritanceFlags">
<summary>Gets flags that specify the inheritance properties of this Access Control Entry (ACE).</summary>
<returns>Flags that specify the inheritance properties of this ACE.</returns>
</member>
<member name="P:System.Security.AccessControl.GenericAce.IsInherited">
<summary>Gets a Boolean value that specifies whether this Access Control Entry (ACE) is inherited or is set explicitly.</summary>
<returns>
<see langword="true" /> if this ACE is inherited; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Security.AccessControl.GenericAce.op_Equality(System.Security.AccessControl.GenericAce,System.Security.AccessControl.GenericAce)">
<summary>Determines whether the specified <see cref="T:System.Security.AccessControl.GenericAce" /> objects are considered equal.</summary>
<param name="left">The first <see cref="T:System.Security.AccessControl.GenericAce" /> object to compare.</param>
<param name="right">The second <see cref="T:System.Security.AccessControl.GenericAce" /> to compare.</param>
<returns>
<see langword="true" /> if the two <see cref="T:System.Security.AccessControl.GenericAce" /> objects are equal; otherwise, <see langword="false" />.</returns>
</member>
<member name="M:System.Security.AccessControl.GenericAce.op_Inequality(System.Security.AccessControl.GenericAce,System.Security.AccessControl.GenericAce)">
<summary>Determines whether the specified <see cref="T:System.Security.AccessControl.GenericAce" /> objects are considered unequal.</summary>
<param name="left">The first <see cref="T:System.Security.AccessControl.GenericAce" /> object to compare.</param>
<param name="right">The second <see cref="T:System.Security.AccessControl.GenericAce" /> to compare.</param>
<returns>
<see langword="true" /> if the two <see cref="T:System.Security.AccessControl.GenericAce" /> objects are unequal; otherwise, <see langword="false" />.</returns>
</member>
<member name="P:System.Security.AccessControl.GenericAce.PropagationFlags">
<summary>Gets flags that specify the inheritance propagation properties of this Access Control Entry (ACE).</summary>
<returns>Flags that specify the inheritance propagation properties of this ACE.</returns>
</member>
<member name="T:System.Security.AccessControl.GenericAcl">
<summary>Represents an access control list (ACL) and is the base class for the <see cref="T:System.Security.AccessControl.CommonAcl" />, <see cref="T:System.Security.AccessControl.DiscretionaryAcl" />, <see cref="T:System.Security.AccessControl.RawAcl" />, and <see cref="T:System.Security.AccessControl.SystemAcl" /> classes.</summary>
</member>
<member name="M:System.Security.AccessControl.GenericAcl.#ctor">
<summary>Initializes a new instance of the <see cref="T:System.Security.AccessControl.GenericAcl" /> class.</summary>
</member>
<member name="F:System.Security.AccessControl.GenericAcl.AclRevision">
<summary>The revision level of the current <see cref="T:System.Security.AccessControl.GenericAcl" />. This value is returned by the <see cref="P:System.Security.AccessControl.GenericAcl.Revision" /> property for Access Control Lists (ACLs) that are not associated with Directory Services objects.</summary>
</member>
<member name="F:System.Security.AccessControl.GenericAcl.AclRevisionDS">
<summary>The revision level of the current <see cref="T:System.Security.AccessControl.GenericAcl" />. This value is returned by the <see cref="P:System.Security.AccessControl.GenericAcl.Revision" /> property for Access Control Lists (ACLs) that are associated with Directory Services objects.</summary>
</member>
<member name="P:System.Security.AccessControl.GenericAcl.BinaryLength">
<summary>Gets the length, in bytes, of the binary representation of the current <see cref="T:System.Security.AccessControl.GenericAcl" /> object. This length should be used before marshaling the ACL into a binary array with the <see cref="M:System.Security.AccessControl.GenericAcl.GetBinaryForm(System.Byte[],System.Int32)" /> method.</summary>
<returns>The length, in bytes, of the binary representation of the current <see cref="T:System.Security.AccessControl.GenericAcl" /> object.</returns>
</member>
<member name="M:System.Security.AccessControl.GenericAcl.CopyTo(System.Security.AccessControl.GenericAce[],System.Int32)">
<summary>Copies each <see cref="T:System.Security.AccessControl.GenericAce" /> of the current <see cref="T:System.Security.AccessControl.GenericAcl" /> into the specified array.</summary>
<param name="array">The array into which copies of the <see cref="T:System.Security.AccessControl.GenericAce" /> objects contained by the current <see cref="T:System.Security.AccessControl.GenericAcl" /> are placed.</param>