NotifyPropertyChangedDispatcherObject.SetAndRaisePropertyChanged Method (Boolean%, Boolean, String)
A helper method that sets property value and raises PropertyChanged event if the value has changed.
Optimized implementation for System.Boolean type.
Namespace: Microsoft.TeamFoundation.MVVM
Assembly: Microsoft.TeamFoundation.Controls (in Microsoft.TeamFoundation.Controls.dll)
Syntax
'Declaration
Protected Function SetAndRaisePropertyChanged ( _
ByRef propertyDataField As Boolean, _
value As Boolean, _
propertyName As String _
) As Boolean
protected bool SetAndRaisePropertyChanged(
ref bool propertyDataField,
bool value,
string propertyName
)
protected:
bool SetAndRaisePropertyChanged(
bool% propertyDataField,
bool value,
String^ propertyName
)
member SetAndRaisePropertyChanged :
propertyDataField:bool byref *
value:bool *
propertyName:string -> bool
protected function SetAndRaisePropertyChanged(
propertyDataField : boolean,
value : boolean,
propertyName : String
) : boolean
Parameters
propertyDataField
Type: System.Boolean%A reference to the data member which is used to store property value.
value
Type: System.BooleanNew property value.
propertyName
Type: System.StringThe name of the property.
Return Value
Type: System.Boolean
True if the property value has changed, false otherwise.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
NotifyPropertyChangedDispatcherObject Class