File: Operations\OperationBase.cs
Web Access
Project: src\src\Features\JsonPatch\src\Microsoft.AspNetCore.JsonPatch.csproj (Microsoft.AspNetCore.JsonPatch)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using System;
using Microsoft.AspNetCore.Shared;
using Newtonsoft.Json;
 
namespace Microsoft.AspNetCore.JsonPatch.Operations;
 
public class OperationBase
{
    private string _op;
    private OperationType _operationType;
 
    [JsonIgnore]
    public OperationType OperationType
    {
        get
        {
            return _operationType;
        }
    }
 
    [JsonProperty(nameof(path))]
    public string path { get; set; }
 
    [JsonProperty(nameof(op))]
    public string op
    {
        get
        {
            return _op;
        }
        set
        {
            OperationType result;
            if (!Enum.TryParse(value, ignoreCase: true, result: out result))
            {
                result = OperationType.Invalid;
            }
            _operationType = result;
            _op = value;
        }
    }
 
    [JsonProperty(nameof(from))]
    public string from { get; set; }
 
    public OperationBase()
    {
    }
 
    public OperationBase(string op, string path, string from)
    {
        ArgumentNullThrowHelper.ThrowIfNull(op);
        ArgumentNullThrowHelper.ThrowIfNull(path);
 
        this.op = op;
        this.path = path;
        this.from = from;
    }
 
    public bool ShouldSerializefrom()
    {
        return (OperationType == OperationType.Move
            || OperationType == OperationType.Copy);
    }
}