1 write to _status
PresentationFramework (1)
System\Windows\Data\BindingExpressionBase.cs (1)
2128
_status
= status;
7 references to _status
PresentationFramework (7)
System\Windows\Data\BindingExpressionBase.cs (7)
224
public BindingStatus Status { get { return (BindingStatus)
_status
; } }
226
internal BindingStatusInternal StatusInternal { get { return
_status
; } }
579
get { return (
_status
== BindingStatusInternal.Detached); }
584
get { return (
_status
!= BindingStatusInternal.Unattached &&
585
_status
!= BindingStatusInternal.Detached &&
2123
if (IsDetached && status !=
_status
)
2125
throw new InvalidOperationException(SR.Format(SR.BindingExpressionStatusChanged,
_status
, status));