src: dotnet: minor documentation fixes

This commit is contained in:
Bill Zissimopoulos 2017-05-11 10:38:12 -07:00
parent db530cb5e5
commit 5b8ebd6e1d

View File

@ -65,7 +65,9 @@ namespace Fsp
/// Occurs just before the file system is mounted. /// Occurs just before the file system is mounted.
/// File systems may override this method to configure the file system host. /// File systems may override this method to configure the file system host.
/// </summary> /// </summary>
/// <param name="Host">The file system host that is mounting this file system.</param> /// <param name="Host">
/// The file system host that is mounting this file system.
/// </param>
/// <returns>STATUS_SUCCESS or error code.</returns> /// <returns>STATUS_SUCCESS or error code.</returns>
public virtual Int32 Init(Object Host) public virtual Int32 Init(Object Host)
{ {
@ -75,7 +77,9 @@ namespace Fsp
/// Occurs just after the file system is mounted, /// Occurs just after the file system is mounted,
/// but prior to receiving any file system operation. /// but prior to receiving any file system operation.
/// </summary> /// </summary>
/// <param name="Host">The file system host that is mounting this file system.</param> /// <param name="Host">
/// The file system host that is mounting this file system.
/// </param>
/// <returns>STATUS_SUCCESS or error code.</returns> /// <returns>STATUS_SUCCESS or error code.</returns>
public virtual Int32 Mounted(Object Host) public virtual Int32 Mounted(Object Host)
{ {
@ -85,14 +89,18 @@ namespace Fsp
/// Occurs just after the file system is unmounted. /// Occurs just after the file system is unmounted.
/// No other file system operations will be received on this file system. /// No other file system operations will be received on this file system.
/// </summary> /// </summary>
/// <param name="Host">The file system host that is mounting this file system.</param> /// <param name="Host">
/// The file system host that is mounting this file system.
/// </param>
public virtual void Unmounted(Object Host) public virtual void Unmounted(Object Host)
{ {
} }
/// <summary> /// <summary>
/// Gets the volume information. /// Gets the volume information.
/// </summary> /// </summary>
/// <param name="VolumeInfo">Receives the volume information.</param> /// <param name="VolumeInfo">
/// Receives the volume information.
/// </param>
/// <returns>STATUS_SUCCESS or error code.</returns> /// <returns>STATUS_SUCCESS or error code.</returns>
public virtual Int32 GetVolumeInfo( public virtual Int32 GetVolumeInfo(
out VolumeInfo VolumeInfo) out VolumeInfo VolumeInfo)
@ -103,8 +111,12 @@ namespace Fsp
/// <summary> /// <summary>
/// Sets the volume label. /// Sets the volume label.
/// </summary> /// </summary>
/// <param name="VolumeLabel">The new label for the volume.</param> /// <param name="VolumeLabel">
/// <param name="VolumeInfo">Receives the updated volume information.</param> /// The new label for the volume.
/// </param>
/// <param name="VolumeInfo">
/// Receives the updated volume information.
/// </param>
/// <returns>STATUS_SUCCESS or error code.</returns> /// <returns>STATUS_SUCCESS or error code.</returns>
public virtual Int32 SetVolumeLabel( public virtual Int32 SetVolumeLabel(
String VolumeLabel, String VolumeLabel,