From 5b8ebd6e1d86787df158695522cc9e27cbe9d937 Mon Sep 17 00:00:00 2001 From: Bill Zissimopoulos Date: Thu, 11 May 2017 10:38:12 -0700 Subject: [PATCH] src: dotnet: minor documentation fixes --- src/dotnet/FileSystemBase.cs | 24 ++++++++++++++++++------ 1 file changed, 18 insertions(+), 6 deletions(-) diff --git a/src/dotnet/FileSystemBase.cs b/src/dotnet/FileSystemBase.cs index c6330da8..9ffc9564 100644 --- a/src/dotnet/FileSystemBase.cs +++ b/src/dotnet/FileSystemBase.cs @@ -65,7 +65,9 @@ namespace Fsp /// Occurs just before the file system is mounted. /// File systems may override this method to configure the file system host. /// - /// The file system host that is mounting this file system. + /// + /// The file system host that is mounting this file system. + /// /// STATUS_SUCCESS or error code. public virtual Int32 Init(Object Host) { @@ -75,7 +77,9 @@ namespace Fsp /// Occurs just after the file system is mounted, /// but prior to receiving any file system operation. /// - /// The file system host that is mounting this file system. + /// + /// The file system host that is mounting this file system. + /// /// STATUS_SUCCESS or error code. public virtual Int32 Mounted(Object Host) { @@ -85,14 +89,18 @@ namespace Fsp /// Occurs just after the file system is unmounted. /// No other file system operations will be received on this file system. /// - /// The file system host that is mounting this file system. + /// + /// The file system host that is mounting this file system. + /// public virtual void Unmounted(Object Host) { } /// /// Gets the volume information. /// - /// Receives the volume information. + /// + /// Receives the volume information. + /// /// STATUS_SUCCESS or error code. public virtual Int32 GetVolumeInfo( out VolumeInfo VolumeInfo) @@ -103,8 +111,12 @@ namespace Fsp /// /// Sets the volume label. /// - /// The new label for the volume. - /// Receives the updated volume information. + /// + /// The new label for the volume. + /// + /// + /// Receives the updated volume information. + /// /// STATUS_SUCCESS or error code. public virtual Int32 SetVolumeLabel( String VolumeLabel,