コード例 #1
0
 /// <summary>
 /// Converts the <see cref="BinaryData"/> to the specified type using
 /// the provided <see cref="ObjectSerializer"/>.
 /// </summary>
 /// <typeparam name="T">The type that the data should be
 /// converted to.</typeparam>
 /// <param name="data">The <see cref="BinaryData"/> instance to convert.</param>
 /// <param name="serializer">The serializer to use
 /// when deserializing the data.</param>
 /// <param name="cancellationToken">The <see cref="CancellationToken"/> to use during deserialization.</param>
 ///<returns>The data converted to the specified type.</returns>
 public static async ValueTask <T?> ToObjectAsync <T>(this BinaryData data, ObjectSerializer serializer, CancellationToken cancellationToken = default) =>
 (T?)await serializer.DeserializeAsync(data.ToStream(), typeof(T), cancellationToken).ConfigureAwait(false);
コード例 #2
0
 /// <summary>
 /// Converts the <see cref="BinaryData"/> to the specified type using
 /// the provided <see cref="ObjectSerializer"/>.
 /// </summary>
 /// <typeparam name="T">The type that the data should be
 /// converted to.</typeparam>
 /// <param name="data">The <see cref="BinaryData"/> instance to convert.</param>
 /// <param name="serializer">The serializer to use
 /// when deserializing the data.</param>
 /// <param name="cancellationToken">The <see cref="CancellationToken"/> to use during deserialization.</param>
 ///<returns>The data converted to the specified type.</returns>
 public static T?ToObject <T>(this BinaryData data, ObjectSerializer serializer, CancellationToken cancellationToken = default) =>
 (T?)serializer.Deserialize(data.ToStream(), typeof(T), cancellationToken);