1 write to _status
PresentationFramework (1)
System\Windows\Data\BindingExpressionBase.cs (1)
2120
_status
= status;
7 references to _status
PresentationFramework (7)
System\Windows\Data\BindingExpressionBase.cs (7)
216
public BindingStatus Status { get { return (BindingStatus)
_status
; } }
218
internal BindingStatusInternal StatusInternal { get { return
_status
; } }
571
get { return (
_status
== BindingStatusInternal.Detached); }
576
get { return (
_status
!= BindingStatusInternal.Unattached &&
577
_status
!= BindingStatusInternal.Detached &&
2115
if (IsDetached && status !=
_status
)
2117
throw new InvalidOperationException(SR.Format(SR.BindingExpressionStatusChanged,
_status
, status));