Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 20 additions & 14 deletions sdk/core/Azure.Core/api/Azure.Core.net461.cs
Original file line number Diff line number Diff line change
Expand Up @@ -89,13 +89,6 @@ public HttpAuthorization(string scheme, string parameter) { }
public static bool operator !=(Azure.HttpRange left, Azure.HttpRange right) { throw null; }
public override string ToString() { throw null; }
}
public partial interface IJsonSerializable
{
void Deserialize(System.IO.Stream stream, Azure.SerializableOptions? options = null);
void Serialize(System.IO.Stream stream, Azure.SerializableOptions? options = null);
bool TryDeserialize(System.IO.Stream stream, out long bytesConsumed, Azure.SerializableOptions? options = null);
bool TrySerialize(System.IO.Stream stream, out long bytesWritten, Azure.SerializableOptions? options = null);
}
public partial class JsonPatchDocument
{
public JsonPatchDocument() { }
Expand Down Expand Up @@ -278,13 +271,6 @@ protected Response() { }
public override int GetHashCode() { throw null; }
public static implicit operator T (Azure.Response<T> response) { throw null; }
}
public partial class SerializableOptions
{
public SerializableOptions() { }
public bool IgnoreAdditionalProperties { get { throw null; } set { } }
public bool IgnoreReadOnlyProperties { get { throw null; } set { } }
public bool PrettyPrint { get { throw null; } set { } }
}
public partial class SyncAsyncEventArgs : System.EventArgs
{
public SyncAsyncEventArgs(bool isRunningSynchronously, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { }
Expand Down Expand Up @@ -1078,6 +1064,13 @@ public ServerCertificateCustomValidationArgs(System.Security.Cryptography.X509Ce
}
namespace Azure.Core.Serialization
{
public partial interface IJsonSerializable
{
void Deserialize(System.IO.Stream stream, Azure.Core.Serialization.SerializableOptions? options = null);
void Serialize(System.IO.Stream stream, Azure.Core.Serialization.SerializableOptions? options = null);
bool TryDeserialize(System.IO.Stream stream, out long bytesConsumed, Azure.Core.Serialization.SerializableOptions? options = null);
bool TrySerialize(System.IO.Stream stream, out long bytesWritten, Azure.Core.Serialization.SerializableOptions? options = null);
}
public partial interface IMemberNameConverter
{
string? ConvertMemberName(System.Reflection.MemberInfo member);
Expand All @@ -1095,6 +1088,12 @@ public override void Serialize(System.IO.Stream stream, object? value, System.Ty
public override System.Threading.Tasks.ValueTask SerializeAsync(System.IO.Stream stream, object? value, System.Type inputType, System.Threading.CancellationToken cancellationToken) { throw null; }
public override System.Threading.Tasks.ValueTask<System.BinaryData> SerializeAsync(object? value, System.Type? inputType = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; }
}
public static partial class ModelSerializer
{
public static T Deserialize<T>(System.IO.Stream stream, Azure.Core.Serialization.SerializableOptions? options = null) where T : Azure.Core.Serialization.IJsonSerializable, new() { throw null; }
public static T Deserialize<T>(string json, Azure.Core.Serialization.SerializableOptions? options = null) where T : Azure.Core.Serialization.IJsonSerializable, new() { throw null; }
public static System.IO.Stream Serialize<T>(T model, Azure.Core.Serialization.SerializableOptions? options = null) where T : Azure.Core.Serialization.IJsonSerializable, new() { throw null; }
}
public abstract partial class ObjectSerializer
{
protected ObjectSerializer() { }
Expand All @@ -1105,6 +1104,13 @@ protected ObjectSerializer() { }
public abstract System.Threading.Tasks.ValueTask SerializeAsync(System.IO.Stream stream, object? value, System.Type inputType, System.Threading.CancellationToken cancellationToken);
public virtual System.Threading.Tasks.ValueTask<System.BinaryData> SerializeAsync(object? value, System.Type? inputType = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; }
}
public partial class SerializableOptions
{
public SerializableOptions() { }
public bool IgnoreAdditionalProperties { get { throw null; } set { } }
public bool IgnoreReadOnlyProperties { get { throw null; } set { } }
public bool PrettyPrint { get { throw null; } set { } }
}
}
namespace Azure.Messaging
{
Expand Down
34 changes: 20 additions & 14 deletions sdk/core/Azure.Core/api/Azure.Core.net5.0.cs
Original file line number Diff line number Diff line change
Expand Up @@ -89,13 +89,6 @@ public HttpAuthorization(string scheme, string parameter) { }
public static bool operator !=(Azure.HttpRange left, Azure.HttpRange right) { throw null; }
public override string ToString() { throw null; }
}
public partial interface IJsonSerializable
{
void Deserialize(System.IO.Stream stream, Azure.SerializableOptions? options = null);
void Serialize(System.IO.Stream stream, Azure.SerializableOptions? options = null);
bool TryDeserialize(System.IO.Stream stream, out long bytesConsumed, Azure.SerializableOptions? options = null);
bool TrySerialize(System.IO.Stream stream, out long bytesWritten, Azure.SerializableOptions? options = null);
}
public partial class JsonPatchDocument
{
public JsonPatchDocument() { }
Expand Down Expand Up @@ -278,13 +271,6 @@ protected Response() { }
public override int GetHashCode() { throw null; }
public static implicit operator T (Azure.Response<T> response) { throw null; }
}
public partial class SerializableOptions
{
public SerializableOptions() { }
public bool IgnoreAdditionalProperties { get { throw null; } set { } }
public bool IgnoreReadOnlyProperties { get { throw null; } set { } }
public bool PrettyPrint { get { throw null; } set { } }
}
public partial class SyncAsyncEventArgs : System.EventArgs
{
public SyncAsyncEventArgs(bool isRunningSynchronously, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { }
Expand Down Expand Up @@ -1078,6 +1064,13 @@ public ServerCertificateCustomValidationArgs(System.Security.Cryptography.X509Ce
}
namespace Azure.Core.Serialization
{
public partial interface IJsonSerializable
{
void Deserialize(System.IO.Stream stream, Azure.Core.Serialization.SerializableOptions? options = null);
void Serialize(System.IO.Stream stream, Azure.Core.Serialization.SerializableOptions? options = null);
bool TryDeserialize(System.IO.Stream stream, out long bytesConsumed, Azure.Core.Serialization.SerializableOptions? options = null);
bool TrySerialize(System.IO.Stream stream, out long bytesWritten, Azure.Core.Serialization.SerializableOptions? options = null);
}
public partial interface IMemberNameConverter
{
string? ConvertMemberName(System.Reflection.MemberInfo member);
Expand All @@ -1095,6 +1088,12 @@ public override void Serialize(System.IO.Stream stream, object? value, System.Ty
public override System.Threading.Tasks.ValueTask SerializeAsync(System.IO.Stream stream, object? value, System.Type inputType, System.Threading.CancellationToken cancellationToken) { throw null; }
public override System.Threading.Tasks.ValueTask<System.BinaryData> SerializeAsync(object? value, System.Type? inputType = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; }
}
public static partial class ModelSerializer
{
public static T Deserialize<T>(System.IO.Stream stream, Azure.Core.Serialization.SerializableOptions? options = null) where T : Azure.Core.Serialization.IJsonSerializable, new() { throw null; }
public static T Deserialize<T>(string json, Azure.Core.Serialization.SerializableOptions? options = null) where T : Azure.Core.Serialization.IJsonSerializable, new() { throw null; }
public static System.IO.Stream Serialize<T>(T model, Azure.Core.Serialization.SerializableOptions? options = null) where T : Azure.Core.Serialization.IJsonSerializable, new() { throw null; }
}
public abstract partial class ObjectSerializer
{
protected ObjectSerializer() { }
Expand All @@ -1105,6 +1104,13 @@ protected ObjectSerializer() { }
public abstract System.Threading.Tasks.ValueTask SerializeAsync(System.IO.Stream stream, object? value, System.Type inputType, System.Threading.CancellationToken cancellationToken);
public virtual System.Threading.Tasks.ValueTask<System.BinaryData> SerializeAsync(object? value, System.Type? inputType = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; }
}
public partial class SerializableOptions
{
public SerializableOptions() { }
public bool IgnoreAdditionalProperties { get { throw null; } set { } }
public bool IgnoreReadOnlyProperties { get { throw null; } set { } }
public bool PrettyPrint { get { throw null; } set { } }
}
}
namespace Azure.Messaging
{
Expand Down
34 changes: 20 additions & 14 deletions sdk/core/Azure.Core/api/Azure.Core.net6.0.cs
Original file line number Diff line number Diff line change
Expand Up @@ -89,13 +89,6 @@ public HttpAuthorization(string scheme, string parameter) { }
public static bool operator !=(Azure.HttpRange left, Azure.HttpRange right) { throw null; }
public override string ToString() { throw null; }
}
public partial interface IJsonSerializable
{
void Deserialize(System.IO.Stream stream, Azure.SerializableOptions? options = null);
void Serialize(System.IO.Stream stream, Azure.SerializableOptions? options = null);
bool TryDeserialize(System.IO.Stream stream, out long bytesConsumed, Azure.SerializableOptions? options = null);
bool TrySerialize(System.IO.Stream stream, out long bytesWritten, Azure.SerializableOptions? options = null);
}
public partial class JsonPatchDocument
{
public JsonPatchDocument() { }
Expand Down Expand Up @@ -278,13 +271,6 @@ protected Response() { }
public override int GetHashCode() { throw null; }
public static implicit operator T (Azure.Response<T> response) { throw null; }
}
public partial class SerializableOptions
{
public SerializableOptions() { }
public bool IgnoreAdditionalProperties { get { throw null; } set { } }
public bool IgnoreReadOnlyProperties { get { throw null; } set { } }
public bool PrettyPrint { get { throw null; } set { } }
}
public partial class SyncAsyncEventArgs : System.EventArgs
{
public SyncAsyncEventArgs(bool isRunningSynchronously, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { }
Expand Down Expand Up @@ -1078,6 +1064,13 @@ public ServerCertificateCustomValidationArgs(System.Security.Cryptography.X509Ce
}
namespace Azure.Core.Serialization
{
public partial interface IJsonSerializable
{
void Deserialize(System.IO.Stream stream, Azure.Core.Serialization.SerializableOptions? options = null);
void Serialize(System.IO.Stream stream, Azure.Core.Serialization.SerializableOptions? options = null);
bool TryDeserialize(System.IO.Stream stream, out long bytesConsumed, Azure.Core.Serialization.SerializableOptions? options = null);
bool TrySerialize(System.IO.Stream stream, out long bytesWritten, Azure.Core.Serialization.SerializableOptions? options = null);
}
public partial interface IMemberNameConverter
{
string? ConvertMemberName(System.Reflection.MemberInfo member);
Expand All @@ -1095,6 +1088,12 @@ public override void Serialize(System.IO.Stream stream, object? value, System.Ty
public override System.Threading.Tasks.ValueTask SerializeAsync(System.IO.Stream stream, object? value, System.Type inputType, System.Threading.CancellationToken cancellationToken) { throw null; }
public override System.Threading.Tasks.ValueTask<System.BinaryData> SerializeAsync(object? value, System.Type? inputType = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; }
}
public static partial class ModelSerializer
{
public static T Deserialize<T>(System.IO.Stream stream, Azure.Core.Serialization.SerializableOptions? options = null) where T : Azure.Core.Serialization.IJsonSerializable, new() { throw null; }
public static T Deserialize<T>(string json, Azure.Core.Serialization.SerializableOptions? options = null) where T : Azure.Core.Serialization.IJsonSerializable, new() { throw null; }
public static System.IO.Stream Serialize<T>(T model, Azure.Core.Serialization.SerializableOptions? options = null) where T : Azure.Core.Serialization.IJsonSerializable, new() { throw null; }
}
public abstract partial class ObjectSerializer
{
protected ObjectSerializer() { }
Expand All @@ -1105,6 +1104,13 @@ protected ObjectSerializer() { }
public abstract System.Threading.Tasks.ValueTask SerializeAsync(System.IO.Stream stream, object? value, System.Type inputType, System.Threading.CancellationToken cancellationToken);
public virtual System.Threading.Tasks.ValueTask<System.BinaryData> SerializeAsync(object? value, System.Type? inputType = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; }
}
public partial class SerializableOptions
{
public SerializableOptions() { }
public bool IgnoreAdditionalProperties { get { throw null; } set { } }
public bool IgnoreReadOnlyProperties { get { throw null; } set { } }
public bool PrettyPrint { get { throw null; } set { } }
}
}
namespace Azure.Messaging
{
Expand Down
34 changes: 20 additions & 14 deletions sdk/core/Azure.Core/api/Azure.Core.netcoreapp2.1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -89,13 +89,6 @@ public HttpAuthorization(string scheme, string parameter) { }
public static bool operator !=(Azure.HttpRange left, Azure.HttpRange right) { throw null; }
public override string ToString() { throw null; }
}
public partial interface IJsonSerializable
{
void Deserialize(System.IO.Stream stream, Azure.SerializableOptions? options = null);
void Serialize(System.IO.Stream stream, Azure.SerializableOptions? options = null);
bool TryDeserialize(System.IO.Stream stream, out long bytesConsumed, Azure.SerializableOptions? options = null);
bool TrySerialize(System.IO.Stream stream, out long bytesWritten, Azure.SerializableOptions? options = null);
}
public partial class JsonPatchDocument
{
public JsonPatchDocument() { }
Expand Down Expand Up @@ -278,13 +271,6 @@ protected Response() { }
public override int GetHashCode() { throw null; }
public static implicit operator T (Azure.Response<T> response) { throw null; }
}
public partial class SerializableOptions
{
public SerializableOptions() { }
public bool IgnoreAdditionalProperties { get { throw null; } set { } }
public bool IgnoreReadOnlyProperties { get { throw null; } set { } }
public bool PrettyPrint { get { throw null; } set { } }
}
public partial class SyncAsyncEventArgs : System.EventArgs
{
public SyncAsyncEventArgs(bool isRunningSynchronously, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { }
Expand Down Expand Up @@ -1078,6 +1064,13 @@ public ServerCertificateCustomValidationArgs(System.Security.Cryptography.X509Ce
}
namespace Azure.Core.Serialization
{
public partial interface IJsonSerializable
{
void Deserialize(System.IO.Stream stream, Azure.Core.Serialization.SerializableOptions? options = null);
void Serialize(System.IO.Stream stream, Azure.Core.Serialization.SerializableOptions? options = null);
bool TryDeserialize(System.IO.Stream stream, out long bytesConsumed, Azure.Core.Serialization.SerializableOptions? options = null);
bool TrySerialize(System.IO.Stream stream, out long bytesWritten, Azure.Core.Serialization.SerializableOptions? options = null);
}
public partial interface IMemberNameConverter
{
string? ConvertMemberName(System.Reflection.MemberInfo member);
Expand All @@ -1095,6 +1088,12 @@ public override void Serialize(System.IO.Stream stream, object? value, System.Ty
public override System.Threading.Tasks.ValueTask SerializeAsync(System.IO.Stream stream, object? value, System.Type inputType, System.Threading.CancellationToken cancellationToken) { throw null; }
public override System.Threading.Tasks.ValueTask<System.BinaryData> SerializeAsync(object? value, System.Type? inputType = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; }
}
public static partial class ModelSerializer
{
public static T Deserialize<T>(System.IO.Stream stream, Azure.Core.Serialization.SerializableOptions? options = null) where T : Azure.Core.Serialization.IJsonSerializable, new() { throw null; }
public static T Deserialize<T>(string json, Azure.Core.Serialization.SerializableOptions? options = null) where T : Azure.Core.Serialization.IJsonSerializable, new() { throw null; }
public static System.IO.Stream Serialize<T>(T model, Azure.Core.Serialization.SerializableOptions? options = null) where T : Azure.Core.Serialization.IJsonSerializable, new() { throw null; }
}
public abstract partial class ObjectSerializer
{
protected ObjectSerializer() { }
Expand All @@ -1105,6 +1104,13 @@ protected ObjectSerializer() { }
public abstract System.Threading.Tasks.ValueTask SerializeAsync(System.IO.Stream stream, object? value, System.Type inputType, System.Threading.CancellationToken cancellationToken);
public virtual System.Threading.Tasks.ValueTask<System.BinaryData> SerializeAsync(object? value, System.Type? inputType = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; }
}
public partial class SerializableOptions
{
public SerializableOptions() { }
public bool IgnoreAdditionalProperties { get { throw null; } set { } }
public bool IgnoreReadOnlyProperties { get { throw null; } set { } }
public bool PrettyPrint { get { throw null; } set { } }
}
}
namespace Azure.Messaging
{
Expand Down
Loading