修改注释。

This commit is contained in:
tengge1 2020-03-05 20:59:10 +08:00
parent eee153f17a
commit eea74156cd
4 changed files with 5 additions and 5 deletions

View File

@ -14,7 +14,7 @@ namespace ShadowEditor.Server.Remote.FileSystem
public class RemoteDirectoryEntry : IUnixDirectoryEntry
{
/// <summary>
/// Initializes a new instance of the <see cref="DotNetDirectoryEntry"/> class.
/// Initializes a new instance of the <see cref="RemoteDirectoryEntry"/> class.
/// </summary>
/// <param name="fileSystem">The file system this entry belongs to</param>
/// <param name="dirInfo">The <see cref="DirectoryInfo"/> to extract the information from</param>

View File

@ -13,7 +13,7 @@ namespace ShadowEditor.Server.Remote.FileSystem
public class RemoteFileEntry : IUnixFileEntry
{
/// <summary>
/// Initializes a new instance of the <see cref="DotNetFileEntry"/> class.
/// Initializes a new instance of the <see cref="RemoteFileEntry"/> class.
/// </summary>
/// <param name="fileSystem">The file system this entry belongs to</param>
/// <param name="info">The <see cref="FileInfo"/> to extract the information from</param>

View File

@ -17,7 +17,7 @@ namespace ShadowEditor.Server.Remote.FileSystem
private bool _disposedValue;
/// <summary>
/// Initializes a new instance of the <see cref="DotNetFileSystem"/> class.
/// Initializes a new instance of the <see cref="RemoteFileSystem"/> class.
/// </summary>
/// <param name="rootPath">The path to use as root</param>
/// <param name="allowNonEmptyDirectoryDelete">Allow deletion of non-empty directories?</param>

View File

@ -16,7 +16,7 @@ namespace ShadowEditor.Server.Remote.FileSystem
private readonly bool _useUserIdAsSubFolder;
/// <summary>
/// Initializes a new instance of the <see cref="DotNetFileSystemProvider"/> class.
/// Initializes a new instance of the <see cref="RemoteFileSystemProvider"/> class.
/// </summary>
/// <param name="rootPath">The root path for all users</param>
public RemoteFileSystemProvider(string rootPath)
@ -25,7 +25,7 @@ namespace ShadowEditor.Server.Remote.FileSystem
}
/// <summary>
/// Initializes a new instance of the <see cref="DotNetFileSystemProvider"/> class.
/// Initializes a new instance of the <see cref="RemoteFileSystemProvider"/> class.
/// </summary>
/// <param name="rootPath">The root path for all users</param>
/// <param name="useUserIdAsSubFolder">Use the user id as subfolder?</param>