19 references to SourceProperties
PresentationFramework (19)
src\Framework\System\Windows\Data\Binding.cs (19)
342if (_sourceInUse == SourceProperties.None || _sourceInUse == SourceProperties.StaticSource || 348throw new InvalidOperationException(SR.Get(SRID.BindingConflict, SourceProperties.StaticSource, _sourceInUse)); 533if (_sourceInUse == SourceProperties.None || _sourceInUse == SourceProperties.Source) 547throw new InvalidOperationException(SR.Get(SRID.BindingConflict, SourceProperties.Source, _sourceInUse)); 575if (_sourceInUse == SourceProperties.None || _sourceInUse == SourceProperties.RelativeSource) 581throw new InvalidOperationException(SR.Get(SRID.BindingConflict, SourceProperties.RelativeSource, _sourceInUse)); 594if (_sourceInUse == SourceProperties.None || _sourceInUse == SourceProperties.ElementName) 600throw new InvalidOperationException(SR.Get(SRID.BindingConflict, SourceProperties.ElementName, _sourceInUse)); 829(_source == UnsetSource) ? SourceProperties.None : 830(HasValue(Feature.RelativeSource)) ? SourceProperties.RelativeSource : 831(HasValue(Feature.ElementSource)) ? SourceProperties.ElementName : 832(HasValue(Feature.ObjectSource)) ? SourceProperties.Source : 833(_source == StaticSourceRef) ? SourceProperties.StaticSource : 834SourceProperties.InternalSource; 843SourceProperties _sourceInUse;