Skip to content

Commit c466cfc

Browse files
Updated class comments
1 parent 532b824 commit c466cfc

7 files changed

Lines changed: 15 additions & 3 deletions

File tree

src/KristofferStrube.Blazor.FileAPI/Enums/EndingType.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33

44
namespace KristofferStrube.Blazor.FileAPI;
55

6+
/// <summary>
7+
/// <see href="https://www.w3.org/TR/FileAPI/#enumdef-endingtype">EndingType browser specs</see>
8+
/// </summary>
69
[JsonConverter(typeof(EnumDescriptionConverter<EndingType>))]
710
public enum EndingType
811
{

src/KristofferStrube.Blazor.FileAPI/FileReader.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
namespace KristofferStrube.Blazor.FileAPI;
55

66
/// <summary>
7-
/// <see href="https://www.w3.org/TR/FileAPI/#dfn-filereader">File browser specs</see>
7+
/// <see href="https://www.w3.org/TR/FileAPI/#dfn-filereader">FileReader browser specs</see>
88
/// </summary>
99
public class FileReader : BaseJSWrapper
1010
{

src/KristofferStrube.Blazor.FileAPI/Options/BlobPart.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
namespace KristofferStrube.Blazor.FileAPI;
22

3+
/// <summary>
4+
/// <see href="https://www.w3.org/TR/FileAPI/#typedefdef-blobpart">BlobPart browser specs</see>
5+
/// </summary>
36
public class BlobPart
47
{
58
internal readonly byte[]? byteArrayPart;

src/KristofferStrube.Blazor.FileAPI/Options/BlobPropertyBag.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
namespace KristofferStrube.Blazor.FileAPI;
44

5+
/// <summary>
6+
/// <see href="https://www.w3.org/TR/FileAPI/#dfn-BlobPropertyBag">BlobPropertyBag browser specs</see>
7+
/// </summary>
58
public class BlobPropertyBag
69
{
710
/// <summary>

src/KristofferStrube.Blazor.FileAPI/Options/FilePropertyBag.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
namespace KristofferStrube.Blazor.FileAPI;
44

5+
/// <summary>
6+
/// <see href="https://www.w3.org/TR/FileAPI/#dfn-FilePropertyBag">FilePropertyBag browser specs</see>
7+
/// </summary>
58
public class FilePropertyBag : BlobPropertyBag
69
{
710
/// <summary>

src/KristofferStrube.Blazor.FileAPI/ProgressEvent.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
namespace KristofferStrube.Blazor.FileAPI;
44

55
/// <summary>
6-
/// <see href="https://xhr.spec.whatwg.org/#progressevent">File browser specs</see>
6+
/// <see href="https://xhr.spec.whatwg.org/#progressevent">ProgressEvent browser specs</see>
77
/// </summary>
88
public class ProgressEvent : BaseJSWrapper
99
{

src/KristofferStrube.Blazor.FileAPI/URL.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
namespace KristofferStrube.Blazor.FileAPI;
44

55
/// <summary>
6-
/// <see href="https://www.w3.org/TR/FileAPI/#creating-revoking">Blob browser specs</see>
6+
/// <see href="https://www.w3.org/TR/FileAPI/#url">URL browser specs</see>
77
/// </summary>
88
public class URL
99
{

0 commit comments

Comments
 (0)