You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/KristofferStrube.Blazor.FileAPI/FileReader.cs
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -173,42 +173,42 @@ public async Task<ushort> GetReadyStateAsync()
173
173
/// <summary>
174
174
/// Invoked when a load starts.
175
175
/// </summary>
176
-
[Obsolete("This will be removed in the next major release as in favor of AddOnLoadStartEventListenerAsync and RemoveOnLoadStartEventListenerAsync as they are more memory safe.")]
176
+
[Obsolete("This will be removed in the next major release in favor of AddOnLoadStartEventListenerAsync and RemoveOnLoadStartEventListenerAsync as they are more memory safe.")]
/// Invoked when the progress of a load changes which includes when it ends.
182
182
/// </summary>
183
-
[Obsolete("This will be removed in the next major release as in favor of AddOnProgressEventListenerAsync and RemoveOnProgressEventListenerAsync as they are more memory safe.")]
183
+
[Obsolete("This will be removed in the next major release in favor of AddOnProgressEventListenerAsync and RemoveOnProgressEventListenerAsync as they are more memory safe.")]
[Obsolete("This will be removed in the next major release as in favor of AddOnLoadEventListenerAsync and RemoveOnLoadEventListenerAsync as they are more memory safe.")]
190
+
[Obsolete("This will be removed in the next major release in favor of AddOnLoadEventListenerAsync and RemoveOnLoadEventListenerAsync as they are more memory safe.")]
191
191
[JsonIgnore]
192
192
publicFunc<ProgressEvent,Task>?OnLoad{get;set;}
193
193
194
194
/// <summary>
195
195
/// Invoked when a load is aborted.
196
196
/// </summary>
197
-
[Obsolete("This will be removed in the next major release as in favor of AddOnAbortEventListenerAsync and RemoveOnAbortEventListenerAsync as they are more memory safe.")]
197
+
[Obsolete("This will be removed in the next major release in favor of AddOnAbortEventListenerAsync and RemoveOnAbortEventListenerAsync as they are more memory safe.")]
198
198
[JsonIgnore]
199
199
publicFunc<ProgressEvent,Task>?OnAbort{get;set;}
200
200
201
201
/// <summary>
202
202
/// Invoked when a load fails due to an error.
203
203
/// </summary>
204
-
[Obsolete("This will be removed in the next major release as in favor of AddOnErrorEventListenerAsync and RemoveOnErrorEventListenerAsync as they are more memory safe.")]
204
+
[Obsolete("This will be removed in the next major release in favor of AddOnErrorEventListenerAsync and RemoveOnErrorEventListenerAsync as they are more memory safe.")]
205
205
[JsonIgnore]
206
206
publicFunc<ProgressEvent,Task>?OnError{get;set;}
207
207
208
208
/// <summary>
209
209
/// Invoked when a load finishes successfully or not.
210
210
/// </summary>
211
-
[Obsolete("This will be removed in the next major release as in favor of AddOnLoadEndEventListenerAsync and RemoveOnLoadEndEventListenerAsync as they are more memory safe.")]
211
+
[Obsolete("This will be removed in the next major release in favor of AddOnLoadEndEventListenerAsync and RemoveOnLoadEndEventListenerAsync as they are more memory safe.")]
0 commit comments