In This Article

SecureStringPropertyChangingRoutedEventArgs Class

Provides event arguments for a cancelable SecureString property change routed event, indicating the old and new values.

public class SecureStringPropertyChangingRoutedEventArgs : PropertyChangingRoutedEventArgs<SecureString>
Inheritance:
Object EventArgs RoutedEventArgs PropertyChangingRoutedEventArgs<SecureString> Object

Constructors

SecureStringPropertyChangingRoutedEventArgs(SecureString, SecureString)

Initializes a new instance of the SecureStringPropertyChangingRoutedEventArgs class with the Cancel property set to false.

public SecureStringPropertyChangingRoutedEventArgs(SecureString oldValue, SecureString newValue)
Parameter Type Description
oldValue SecureString

The current value of the property.

newValue SecureString

The new value of the property that will be set if the property change is not cancelled.

SecureStringPropertyChangingRoutedEventArgs(RoutedEvent, SecureString, SecureString)

Initializes a new instance of the PropertyChangingRoutedEventArgs class with the Cancel property set to false.

public SecureStringPropertyChangingRoutedEventArgs(RoutedEvent routedEvent, SecureString oldValue, SecureString newValue)
Parameter Type Description
routedEvent RoutedEvent

The routed event identifier for this event arguments instance.

oldValue SecureString

The current value of the property.

newValue SecureString

The new value of the property that will be set if the property change is not cancelled.

Inherited Members