XamlSetTypeConverterEventArgs Class
Provides data for callbacks that are invoked when a XAML writer sets a value using a type converter call.
Assembly: System.Xaml (in System.Xaml.dll)
System.EventArgs
System.Windows.Markup.XamlSetValueEventArgs
System.Windows.Markup.XamlSetTypeConverterEventArgs
| Name | Description | |
|---|---|---|
![]() | XamlSetTypeConverterEventArgs(XamlMember, TypeConverter, Object, ITypeDescriptorContext, CultureInfo) | Initializes a new instance of the XamlSetTypeConverterEventArgs class. |
| Name | Description | |
|---|---|---|
![]() | CultureInfo | Gets CultureInfo information that can be used by the type converter class when calling ConvertFrom and other methods. |
![]() | Handled | Gets or sets a value that determines whether a caller that is using the XamlSetValueEventArgs can use the values without having to call CallBase.(Inherited from XamlSetValueEventArgs.) |
![]() | Member | Gets XAML type system and XAML schema information for the member being set.(Inherited from XamlSetValueEventArgs.) |
![]() | ServiceProvider | Gets IServiceProvider information that can be used by the type converter class. |
![]() | TypeConverter | Gets the TypeConverter instance that is invoked and provides type conversion behavior. |
![]() | Value | Gets the value to provide for the member being set.(Inherited from XamlSetValueEventArgs.) |
| Name | Description | |
|---|---|---|
![]() | CallBase() | Provides a way to invoke a callback as defined on a base class of the current acting type.(Overrides XamlSetValueEventArgs.CallBase().) |
![]() | Equals(Object) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | Finalize() | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.(Inherited from Object.) |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetType() | |
![]() | MemberwiseClone() | |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
Callbacks for type converter usages use the EventHandler<TEventArgs> delegate, with XamlSetTypeConverterEventArgs event data constraint.
Callbacks for type converter usages are referenced by XamlSetTypeConverterAttribute applied at the class level (for example on Setter class in WPF). A custom XamlTypeInvoker might also reference a callback through the SetTypeConverterHandlervalue.
Available since 4.0
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.


