Example #1
0
 bool IFileSystemService.Format(GenericFileSystemSettings settings)
 {
     // We do not support formatting.
     throw new System.NotSupportedException();
 }
Example #2
0
 bool IFileSystemService.Format(GenericFileSystemSettings settings)
 {
     // We do not support formatting.
     throw new System.NotSupportedException();
 }
Example #3
0
 /// <summary>
 /// Formats the media with the filesystem.
 /// </summary>
 /// <param name="settings">The settings for the filesystem to create.</param>
 /// <returns>The created and mounted filesystem.</returns>
 public bool Format(GenericFileSystemSettings settings)
 {
     return (fat.Format(((FatSettings)settings)));
 }
Example #4
0
 /// <summary>
 /// Formats the media with the filesystem.
 /// </summary>
 /// <param name="settings">The settings for the filesystem to create.</param>
 /// <returns>The created and mounted filesystem.</returns>
 public bool Format(GenericFileSystemSettings settings)
 {
     return(fat.Format(((FatSettings)settings)));
 }