In This Article

SecureStringPropertyChangedRoutedEventArgs Class

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

public class SecureStringPropertyChangedRoutedEventArgs : PropertyChangedRoutedEventArgs<SecureString>
Inheritance:
Object EventArgs RoutedEventArgs PropertyChangedRoutedEventArgs<SecureString> Object

Constructors

SecureStringPropertyChangedRoutedEventArgs(SecureString, SecureString)

Initializes a new instance of the SecureStringPropertyChangedRoutedEventArgs class.

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

The previous value of the property being tracked as reported by an event.

newValue SecureString

The new value of the property being tracked as reported by an event.

SecureStringPropertyChangedRoutedEventArgs(RoutedEvent, SecureString, SecureString)

Initializes a new instance of the SecureStringPropertyChangedRoutedEventArgs class.

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

The routed event identifier for this event arguments instance.

oldValue SecureString

The previous value of the property being tracked as reported by an event.

newValue SecureString

The new value of the property being tracked as reported by an event.

Inherited Members