// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information. namespace System.Json { /// /// Specifies the event type when an event is raised for a . /// public enum JsonValueChange { /// /// An element has been or will be added to the collection. /// Add, /// /// An element has been or will be removed from the collection. /// Remove, /// /// An element has been or will be replaced in the collection. Used on indexers. /// Replace, /// /// All elements of the collection have been or will be removed. /// Clear, } }