Interface IMethodConfiguration
- Assembly
- NMF.Expressions.Configuration.dll
The public interface for MethodConfiguration
[DefaultImplementationType(typeof(MethodConfiguration))]
[XmlDefaultImplementationType(typeof(MethodConfiguration))]
[ModelRepresentationClass("http://nmf.codeplex.com/incrementalizationConfig#//MethodConfiguration")]
public interface IMethodConfiguration : IModelElement, INotifyPropertyChanged, INotifyPropertyChanging
- Inherited Members
- Extension Methods
Properties
AllowedStrategies
The allowedStrategies property
[LowerBound(1)]
[XmlElementName("allowedStrategies")]
[XmlAttribute(true)]
IListExpression<IncrementalizationStrategy> AllowedStrategies { get; }
Property Value
MethodIdentifier
The methodIdentifier property
[XmlElementName("methodIdentifier")]
[XmlAttribute(true)]
string MethodIdentifier { get; set; }
Property Value
Strategy
The strategy property
[XmlElementName("strategy")]
[XmlAttribute(true)]
IncrementalizationStrategy Strategy { get; set; }
Property Value
Events
MethodIdentifierChanged
Gets fired when the MethodIdentifier property changed its value
event EventHandler<ValueChangedEventArgs> MethodIdentifierChanged
Event Type
MethodIdentifierChanging
Gets fired before the MethodIdentifier property changes its value
event EventHandler<ValueChangedEventArgs> MethodIdentifierChanging
Event Type
StrategyChanged
Gets fired when the Strategy property changed its value
event EventHandler<ValueChangedEventArgs> StrategyChanged
Event Type
StrategyChanging
Gets fired before the Strategy property changes its value
event EventHandler<ValueChangedEventArgs> StrategyChanging