Interface IProcessingInstruction
The public interface for ProcessingInstruction
[DefaultImplementationType(typeof(ProcessingInstruction))]
[XmlDefaultImplementationType(typeof(ProcessingInstruction))]
public interface IProcessingInstruction : IModelElement, INotifyPropertyChanged, INotifyPropertyChanging
- Inherited Members
Properties
Data
The data property
[XmlElementName("data")]
[XmlAttribute(true)]
string Data { get; set; }
Property Value
Target
The target property
[XmlElementName("target")]
[XmlAttribute(true)]
string Target { get; set; }
Property Value
Events
DataChanged
Gets fired when the Data property changed its value
event EventHandler<ValueChangedEventArgs> DataChanged
Event Type
DataChanging
Gets fired before the Data property changes its value
event EventHandler<ValueChangedEventArgs> DataChanging
Event Type
TargetChanged
Gets fired when the Target property changed its value
event EventHandler<ValueChangedEventArgs> TargetChanged
Event Type
TargetChanging
Gets fired before the Target property changes its value
event EventHandler<ValueChangedEventArgs> TargetChanging