Class PropertyChange
Contains information about name chages for a specific property on a content type.
Inheritance
System.Object
PropertyChange
Namespace: EPiServer.DataAbstraction.Migration
Assembly: EPiServer.dll
Version: 12.0.3Syntax
public class PropertyChange : Object
Constructors
PropertyChange(String)
Initializes a new instance of the PropertyChange class.
Declaration
public PropertyChange(string propertyName)
Parameters
Type | Name | Description |
---|---|---|
System.String | propertyName | Name of the property. |
Properties
Name
Gets the name of the property.
Declaration
public string Name { get; }
Property Value
Type | Description |
---|---|
System.String |
OldName
Gets the old name of the property.
Declaration
public string OldName { get; }
Property Value
Type | Description |
---|---|
System.String |
Methods
UsedToBeNamed(String)
Specifies what the property used to be named.
Declaration
public void UsedToBeNamed(string oldName)
Parameters
Type | Name | Description |
---|---|---|
System.String | oldName | The old name. |