Show / Hide Table of Contents

Class OverwriteCopyDataPopupViewModel

The view model class that handles the logic for notifying the user about data that will be overwritten, and giving them the option to rename that data.

Inheritance
object
BindableBase
OverwriteCopyDataPopupViewModel
Implements
INotifyPropertyChanged
Inherited Members
BindableBase.SetProperty<T>(ref T, T, string)
BindableBase.SetProperty<T>(ref T, T, Action, string)
BindableBase.RaisePropertyChanged(string)
BindableBase.OnPropertyChanged(PropertyChangedEventArgs)
BindableBase.PropertyChanged
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Phoenix.Aruba
Assembly: Phoenix.Plugin.Aruba.dll
Syntax
public class OverwriteCopyDataPopupViewModel : BindableBase, INotifyPropertyChanged

Constructors

View Source

OverwriteCopyDataPopupViewModel(IEnumerable<IRenameableData>, string)

Initializes a new instance of the OverwriteCopyDataPopupViewModel class.

Declaration
public OverwriteCopyDataPopupViewModel(IEnumerable<IRenameableData> dataToOverwrite, string typeOfData)
Parameters
Type Name Description
IEnumerable<IRenameableData> dataToOverwrite

The data that would be overwritten by the deployment operation.

string typeOfData

The name of the type of data being overwritten that will be displayed.

Properties

View Source

DataThatWillBeOverwritten

Gets the data that would be overwritten.

Declaration
public ObservableCollection<IRenameableData> DataThatWillBeOverwritten { get; }
Property Value
Type Description
ObservableCollection<IRenameableData>
View Source

DataToRename

Gets the existing data and the new name for that data.

Declaration
public ObservableCollection<RenameDataModel> DataToRename { get; }
Property Value
Type Description
ObservableCollection<RenameDataModel>
View Source

ExplanationText

Gets the text that explains what to do on the view.

Declaration
public string ExplanationText { get; }
Property Value
Type Description
string
View Source

TotalOverwritingDataText

Gets the text that shows how much data the user would overwrite by saving.

Declaration
public string TotalOverwritingDataText { get; }
Property Value
Type Description
string

Implements

INotifyPropertyChanged
  • View Source
In this article
Back to top Generated by DocFX