|
1 |
| -<Type Name="FileSystemAclExtensions" FullName="System.IO.FileSystemAclExtensions"> |
| 1 | +<Type Name="FileSystemAclExtensions" FullName="System.IO.FileSystemAclExtensions"> |
2 | 2 | <TypeSignature Language="C#" Value="public static class FileSystemAclExtensions" />
|
3 | 3 | <TypeSignature Language="ILAsm" Value=".class public auto ansi abstract sealed beforefieldinit FileSystemAclExtensions extends System.Object" />
|
4 | 4 | <TypeSignature Language="DocId" Value="T:System.IO.FileSystemAclExtensions" />
|
@@ -210,11 +210,21 @@ namespace ConsoleApp
|
210 | 210 | <Parameter Name="path" Type="System.String" Index="1" FrameworkAlternate="dotnet-plat-ext-5.0;net-5.0" />
|
211 | 211 | </Parameters>
|
212 | 212 | <Docs>
|
213 |
| - <param name="directorySecurity">To be added.</param> |
214 |
| - <param name="path">To be added.</param> |
215 |
| - <summary>To be added.</summary> |
216 |
| - <returns>To be added.</returns> |
217 |
| - <remarks>To be added.</remarks> |
| 213 | + <param name="directorySecurity">An object that determines the access control and audit security for the directory.</param> |
| 214 | + <param name="path">The path of the directory to create.</param> |
| 215 | + <summary>Creates a directory and returns it, ensuring it is created with the specified directory security. If the directory already exists, the existing directory is returned.</summary> |
| 216 | + <returns>A directory information object representing either a created directory with the provided security properties, or the existing directory.</returns> |
| 217 | + <remarks> |
| 218 | + <format type="text/markdown"><![CDATA[ |
| 219 | +
|
| 220 | +## Remarks |
| 221 | +
|
| 222 | +This extension method was added to .NET Core to bring the functionality that was provided by the `System.IO.Directory.CreateDirectory(System.String,System.Security.AccessControl.DirectorySecurity)` .NET Framework method. |
| 223 | +
|
| 224 | + ]]></format> |
| 225 | + </remarks> |
| 226 | + <exception cref="T:System.ArgumentNullException"><paramref name="directorySecurity" /> or <paramref name="path" /> is <see langword="null" />.</exception> |
| 227 | + <exception cref="T:System.ArgumentException"><paramref name="path" /> is empty.</exception> |
218 | 228 | </Docs>
|
219 | 229 | </Member>
|
220 | 230 | <Member MemberName="GetAccessControl">
|
|
0 commit comments