Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add JsonPatchDocument #14618

Merged
merged 5 commits into from
Aug 27, 2020
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Merge remote-tracking branch 'azure/master' into pakrym/json-path
pakrym committed Aug 27, 2020
commit 1706472e5789794a273bb944ab10de7ff7cc151f
Original file line number Diff line number Diff line change
@@ -94,42 +94,7 @@ public DynamicJson(System.Text.Json.JsonElement element) { }
public void WriteTo(System.Text.Json.Utf8JsonWriter writer) { }
}
}
namespace Azure.Core.JsonPatch
{
public partial class JsonPatchDocument
{
public JsonPatchDocument() { }
public System.Collections.ObjectModel.Collection<Azure.Core.JsonPatch.JsonPatchOperation> Operations { get { throw null; } }
public void AppendAdd(string path, string rawJsonValue) { }
public void AppendCopy(string from, string path, string rawJsonValue) { }
public void AppendMove(string from, string path, string rawJsonValue) { }
public void AppendRemove(string path) { }
public void AppendTest(string path, string rawJsonValue) { }
public override string ToString() { throw null; }
}
public partial class JsonPatchOperation
{
public JsonPatchOperation(Azure.Core.JsonPatch.JsonPatchOperationKind kind, string path, string? from, string? rawJsonValue) { }
public string? From { get { throw null; } }
public Azure.Core.JsonPatch.JsonPatchOperationKind Kind { get { throw null; } }
public string Path { get { throw null; } }
public string? RawJsonValue { get { throw null; } }
}
[System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
public readonly partial struct JsonPatchOperationKind
{
private readonly object _dummy;
private readonly int _dummyPrimitive;
public JsonPatchOperationKind(string operation) { throw null; }
public static Azure.Core.JsonPatch.JsonPatchOperationKind Add { get { throw null; } }
public static Azure.Core.JsonPatch.JsonPatchOperationKind Copy { get { throw null; } }
public static Azure.Core.JsonPatch.JsonPatchOperationKind Move { get { throw null; } }
public static Azure.Core.JsonPatch.JsonPatchOperationKind Remove { get { throw null; } }
public static Azure.Core.JsonPatch.JsonPatchOperationKind Replace { get { throw null; } }
public static Azure.Core.JsonPatch.JsonPatchOperationKind Test { get { throw null; } }
}
}
namespace Azure.Core.Spatial
namespace Azure.Core.GeoJson
{
public sealed partial class GeoBoundingBox : System.IEquatable<Azure.Core.GeoJson.GeoBoundingBox>
{
You are viewing a condensed version of this merge commit. You can view the full changes here.