PipeAccessRule.xml 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Type Name="PipeAccessRule" FullName="System.IO.Pipes.PipeAccessRule">
  3. <TypeSignature Language="C#" Value="public sealed class PipeAccessRule : System.Security.AccessControl.AccessRule" />
  4. <TypeSignature Language="ILAsm" Value=".class public auto ansi sealed beforefieldinit PipeAccessRule extends System.Security.AccessControl.AccessRule" />
  5. <AssemblyInfo>
  6. <AssemblyName>System.Core</AssemblyName>
  7. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  8. </AssemblyInfo>
  9. <Base>
  10. <BaseTypeName>System.Security.AccessControl.AccessRule</BaseTypeName>
  11. </Base>
  12. <Interfaces />
  13. <Docs>
  14. <remarks>
  15. <attribution license="cc4" from="Microsoft" modified="false" />
  16. <para>Access control rules define user account rights that determine which actions are allowed or disallowed on computers that are running Microsoft Windows.</para>
  17. <para>The <see cref="T:System.IO.Pipes.PipeAccessRule" /> class represents an abstraction of an underlying access control entry (ACE) that specifies a user account, the type of access to provide (read, write, and so on), and whether to allow or deny that right. This class can also specify how access rules are propagated to child objects.</para>
  18. <para>Use the <see cref="T:System.IO.Pipes.PipeAccessRule" /> class to create a new access rule. You can persist the rule using the <see cref="T:System.IO.Pipes.PipeSecurity" /> class.</para>
  19. </remarks>
  20. <summary>
  21. <attribution license="cc4" from="Microsoft" modified="false" />
  22. <para>Represents an abstraction of an access control entry (ACE) that defines an access rule for a pipe.</para>
  23. </summary>
  24. </Docs>
  25. <Members>
  26. <Member MemberName=".ctor">
  27. <MemberSignature Language="C#" Value="public PipeAccessRule (System.Security.Principal.IdentityReference identity, System.IO.Pipes.PipeAccessRights rights, System.Security.AccessControl.AccessControlType type);" />
  28. <MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(class System.Security.Principal.IdentityReference identity, valuetype System.IO.Pipes.PipeAccessRights rights, valuetype System.Security.AccessControl.AccessControlType type) cil managed" />
  29. <MemberType>Constructor</MemberType>
  30. <AssemblyInfo>
  31. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  32. </AssemblyInfo>
  33. <Parameters>
  34. <Parameter Name="identity" Type="System.Security.Principal.IdentityReference" />
  35. <Parameter Name="rights" Type="System.IO.Pipes.PipeAccessRights" />
  36. <Parameter Name="type" Type="System.Security.AccessControl.AccessControlType" />
  37. </Parameters>
  38. <Docs>
  39. <remarks>
  40. <attribution license="cc4" from="Microsoft" modified="false" />
  41. <para>Use this constructor to create an access control rule that you can persist using the <see cref="T:System.IO.Pipes.PipeSecurity" /> class. Access control rules define user account rights that determine which actions are allowed or disallowed on computers that are running Microsoft Windows.</para>
  42. </remarks>
  43. <summary>
  44. <attribution license="cc4" from="Microsoft" modified="false" />
  45. <para>Initializes a new instance of the <see cref="T:System.IO.Pipes.PipeAccessRule" /> class with the specified identity, pipe access rights, and access control type.</para>
  46. </summary>
  47. <param name="identity">
  48. <attribution license="cc4" from="Microsoft" modified="false" />An <see cref="T:System.Security.Principal.IdentityReference" /> object that encapsulates a reference to a user account.</param>
  49. <param name="rights">
  50. <attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.IO.Pipes.PipeAccessRights" /> values that specifies the type of operation associated with the access rule.</param>
  51. <param name="type">
  52. <attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Security.AccessControl.AccessControlType" /> values that specifies whether to allow or deny the operation.</param>
  53. </Docs>
  54. </Member>
  55. <Member MemberName=".ctor">
  56. <MemberSignature Language="C#" Value="public PipeAccessRule (string identity, System.IO.Pipes.PipeAccessRights rights, System.Security.AccessControl.AccessControlType type);" />
  57. <MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(string identity, valuetype System.IO.Pipes.PipeAccessRights rights, valuetype System.Security.AccessControl.AccessControlType type) cil managed" />
  58. <MemberType>Constructor</MemberType>
  59. <AssemblyInfo>
  60. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  61. </AssemblyInfo>
  62. <Parameters>
  63. <Parameter Name="identity" Type="System.String" />
  64. <Parameter Name="rights" Type="System.IO.Pipes.PipeAccessRights" />
  65. <Parameter Name="type" Type="System.Security.AccessControl.AccessControlType" />
  66. </Parameters>
  67. <Docs>
  68. <remarks>
  69. <attribution license="cc4" from="Microsoft" modified="false" />
  70. <para>Use this constructor to create an access control rule that you can persist using the <see cref="T:System.IO.Pipes.PipeSecurity" /> class. Access control rules define user account rights that determine which actions are allowed or disallowed on computers that are running Microsoft Windows.</para>
  71. </remarks>
  72. <summary>
  73. <attribution license="cc4" from="Microsoft" modified="false" />
  74. <para>Initializes a new instance of the <see cref="T:System.IO.Pipes.PipeAccessRule" /> class with the specified identity, pipe access rights, and access control type.</para>
  75. </summary>
  76. <param name="identity">
  77. <attribution license="cc4" from="Microsoft" modified="false" />The name of the user account.</param>
  78. <param name="rights">
  79. <attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.IO.Pipes.PipeAccessRights" /> values that specifies the type of operation associated with the access rule.</param>
  80. <param name="type">
  81. <attribution license="cc4" from="Microsoft" modified="false" />One of the <see cref="T:System.Security.AccessControl.AccessControlType" /> values that specifies whether to allow or deny the operation.</param>
  82. </Docs>
  83. </Member>
  84. <Member MemberName="PipeAccessRights">
  85. <MemberSignature Language="C#" Value="public System.IO.Pipes.PipeAccessRights PipeAccessRights { get; }" />
  86. <MemberSignature Language="ILAsm" Value=".property instance valuetype System.IO.Pipes.PipeAccessRights PipeAccessRights" />
  87. <MemberType>Property</MemberType>
  88. <AssemblyInfo>
  89. <AssemblyVersion>4.0.0.0</AssemblyVersion>
  90. </AssemblyInfo>
  91. <ReturnValue>
  92. <ReturnType>System.IO.Pipes.PipeAccessRights</ReturnType>
  93. </ReturnValue>
  94. <Docs>
  95. <value>To be added.</value>
  96. <remarks>To be added.</remarks>
  97. <summary>
  98. <attribution license="cc4" from="Microsoft" modified="false" />
  99. <para>Gets the <see cref="T:System.IO.Pipes.PipeAccessRights" /> flags that are associated with the current <see cref="T:System.IO.Pipes.PipeAccessRule" /> object.</para>
  100. </summary>
  101. </Docs>
  102. </Member>
  103. </Members>
  104. </Type>