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 an instance of the class.

public SecureStringPropertyChangingRoutedEventArgs(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.

SecureStringPropertyChangingRoutedEventArgs(RoutedEvent?, SecureString, SecureString)

Initializes an instance of the class.

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 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

Extension Methods