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
/// Gets some range of the content of a <see cref="Blob"/> as a new <see cref="Blob"/>.
72
+
/// </summary>
73
+
/// <param name="start">The start index of the range. If <see langword="null"/> or negative then <c>0</c> is assumed.</param>
74
+
/// <param name="end">The start index of the range. If <see langword="null"/> or larger than the size of the original <see cref="Blob"/> then the size of the original <see cref="Blob"/> is assumed.</param>
75
+
/// <param name="contentType">An optional MIME type of the new <see cref="Blob"/>. If <see langword="null"/> then the MIME type of the original <see cref="Blob"/> is used.</param>
/// Gets some range of the content of a <see cref="Blob"/> as a new <see cref="Blob"/>.
72
+
/// </summary>
73
+
/// <param name="start">The start index of the range. If <see langword="null"/> or negative then <c>0</c> is assumed.</param>
74
+
/// <param name="end">The start index of the range. If <see langword="null"/> or larger than the size of the original <see cref="Blob"/> then the size of the original <see cref="Blob"/> is assumed.</param>
75
+
/// <param name="contentType">An optional MIME type of the new <see cref="Blob"/>. If <see langword="null"/> then the MIME type of the original <see cref="Blob"/> is used.</param>
/// Starts a new read for some <see cref="Blob"/> as an <see langword="byte"/>[] which can be read from <see cref="GetResultAsByteArrayAsync"/> once the load has ended which can be checked by setting the action <see cref="OnLoadEnd"/>.
49
+
/// </summary>
50
+
/// <param name="blob">The <see cref="Blob"/> that should be read asynchronously.</param>
/// Starts a new read for some <see cref="Blob"/> as a binarily encoded <see langword="string"/> which can be read from <see cref="GetResultAsStringAsync"/> once the load has ended which can be checked by setting the action <see cref="OnLoadEnd"/>.
59
+
/// </summary>
60
+
/// <param name="blob">The <see cref="Blob"/> that should be read asynchronously.</param>
/// Starts a new read for some <see cref="Blob"/> as a <see langword="string"/> which can be read from <see cref="GetResultAsStringAsync"/> once the load has ended which can be checked by setting the action <see cref="OnLoadEnd"/>.
69
+
/// </summary>
70
+
/// <param name="blob">The <see cref="Blob"/> that should be read asynchronously.</param>
71
+
/// <param name="encoding">An optional encoding for the text. The default is UTF-8.</param>
/// Starts a new read for some <see cref="Blob"/> as a base64 encoded Data URL which can be read from <see cref="GetResultAsStringAsync"/> once the load has ended which can be checked by setting the action <see cref="OnLoadEnd"/>.
80
+
/// </summary>
81
+
/// <param name="blob">The <see cref="Blob"/> that should be read asynchronously.</param>
/// Gets the result of the read a <see langword="string"/>.
125
+
/// </summary>
126
+
/// <returns>A <see langword="string"/> representing the read. If there was no result from the read or if the read has not ended yet then it will be <see langword="null"/>.</returns>
/// Gets the result of the read a <see langword="byte"/>[].
135
+
/// </summary>
136
+
/// <returns>A <see langword="byte"/>[] representing the read. If there was no result from the read or if the read has not ended yet then it will be <see langword="null"/>.</returns>
0 commit comments