Class UpdateResult
- Namespace
- SunamoXliffParser
- Assembly
- SunamoXliffParser.dll
Contains the results of an XLIFF update operation, listing added, removed, and updated item identifiers.
public class UpdateResult
- Inheritance
-
UpdateResult
- Inherited Members
- Extension Methods
Constructors
UpdateResult(IEnumerable<string>, IEnumerable<string>, IEnumerable<string>)
Initializes a new instance of the UpdateResult class.
public UpdateResult(IEnumerable<string> addedItems, IEnumerable<string> removedItems, IEnumerable<string> updatedItems)
Parameters
addedItemsIEnumerable<string>The identifiers of items that were added.
removedItemsIEnumerable<string>The identifiers of items that were removed.
updatedItemsIEnumerable<string>The identifiers of items that were updated.
Properties
AddedItems
Gets or sets the identifiers of items that were added.
public IEnumerable<string> AddedItems { get; set; }
Property Value
RemovedItems
Gets or sets the identifiers of items that were removed.
public IEnumerable<string> RemovedItems { get; set; }
Property Value
UpdatedItems
Gets or sets the identifiers of items that were updated.
public IEnumerable<string> UpdatedItems { get; set; }
Property Value
Methods
Any()
Determines whether any items were added, removed, or updated.
public bool Any()
Returns
- bool
True if any items were changed; otherwise, false.