<?xml version="1.0" encoding="utf-8"?>
|
<doc>
|
<assembly>
|
<name>System.ComponentModel.TypeConverter</name>
|
</assembly>
|
<members>
|
<member name="T:System.ComponentModel.ArrayConverter">
|
<summary>Provides a type converter to convert <see cref="T:System.Array" /> objects to and from various other representations.</summary>
|
</member>
|
<member name="M:System.ComponentModel.ArrayConverter.#ctor">
|
<summary>Initializes a new instance of the <see cref="T:System.ComponentModel.ArrayConverter" /> class. </summary>
|
</member>
|
<member name="M:System.ComponentModel.ArrayConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
|
<summary>Converts the given value object to the specified destination type.</summary>
|
<returns>An <see cref="T:System.Object" /> that represents the converted value.</returns>
|
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context. </param>
|
<param name="culture">The culture into which <paramref name="value" /> will be converted.</param>
|
<param name="value">The <see cref="T:System.Object" /> to convert. </param>
|
<param name="destinationType">The <see cref="T:System.Type" /> to convert the value to. </param>
|
<exception cref="T:System.ArgumentNullException">
|
<paramref name="destinationType" /> is null. </exception>
|
<exception cref="T:System.NotSupportedException">The conversion cannot be performed. </exception>
|
</member>
|
<member name="T:System.ComponentModel.BaseNumberConverter">
|
<summary>Provides a base type converter for nonfloating-point numerical types.</summary>
|
</member>
|
<member name="M:System.ComponentModel.BaseNumberConverter.#ctor">
|
<summary>Initializes a new instance of the <see cref="T:System.ComponentModel.BaseNumberConverter" /> class.</summary>
|
</member>
|
<member name="M:System.ComponentModel.BaseNumberConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)">
|
<summary>Determines if this converter can convert an object in the given source type to the native type of the converter.</summary>
|
<returns>true if this converter can perform the operation; otherwise, false.</returns>
|
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context. </param>
|
<param name="sourceType">A <see cref="T:System.Type" /> that represents the type from which you want to convert. </param>
|
</member>
|
<member name="M:System.ComponentModel.BaseNumberConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
|
<summary>Returns a value indicating whether this converter can convert an object to the given destination type using the context.</summary>
|
<returns>true if this converter can perform the operation; otherwise, false.</returns>
|
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context. </param>
|
<param name="t">A <see cref="T:System.Type" /> that represents the type to which you want to convert. </param>
|
</member>
|
<member name="M:System.ComponentModel.BaseNumberConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
|
<summary>Converts the given object to the converter's native type.</summary>
|
<returns>An <see cref="T:System.Object" /> that represents the converted value.</returns>
|
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context. </param>
|
<param name="culture">A <see cref="T:System.Globalization.CultureInfo" /> that specifies the culture to represent the number. </param>
|
<param name="value">The object to convert. </param>
|
<exception cref="T:System.Exception">
|
<paramref name="value" /> is not a valid value for the target type.</exception>
|
<exception cref="T:System.NotSupportedException">The conversion cannot be performed. </exception>
|
</member>
|
<member name="M:System.ComponentModel.BaseNumberConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
|
<summary>Converts the specified object to another type.</summary>
|
<returns>An <see cref="T:System.Object" /> that represents the converted value.</returns>
|
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context. </param>
|
<param name="culture">A <see cref="T:System.Globalization.CultureInfo" /> that specifies the culture to represent the number. </param>
|
<param name="value">The object to convert. </param>
|
<param name="destinationType">The type to convert the object to. </param>
|
<exception cref="T:System.ArgumentNullException">
|
<paramref name="destinationType" /> is null.</exception>
|
<exception cref="T:System.NotSupportedException">The conversion cannot be performed. </exception>
|
</member>
|
<member name="T:System.ComponentModel.BooleanConverter">
|
<summary>Provides a type converter to convert <see cref="T:System.Boolean" /> objects to and from various other representations.</summary>
|
</member>
|
<member name="M:System.ComponentModel.BooleanConverter.#ctor">
|
<summary>Initializes a new instance of the <see cref="T:System.ComponentModel.BooleanConverter" /> class. </summary>
|
</member>
|
<member name="M:System.ComponentModel.BooleanConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)">
|
<summary>Gets a value indicating whether this converter can convert an object in the given source type to a Boolean object using the specified context.</summary>
|
<returns>true if this object can perform the conversion; otherwise, false.</returns>
|
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context. </param>
|
<param name="sourceType">A <see cref="T:System.Type" /> that represents the type you wish to convert from. </param>
|
</member>
|
<member name="M:System.ComponentModel.BooleanConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
|
<summary>Converts the given value object to a Boolean object.</summary>
|
<returns>An <see cref="T:System.Object" /> that represents the converted <paramref name="value" />.</returns>
|
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context. </param>
|
<param name="culture">A <see cref="T:System.Globalization.CultureInfo" /> that specifies the culture to which to convert.</param>
|
<param name="value">The <see cref="T:System.Object" /> to convert. </param>
|
<exception cref="T:System.FormatException">
|
<paramref name="value" /> is not a valid value for the target type. </exception>
|
<exception cref="T:System.NotSupportedException">The conversion cannot be performed. </exception>
|
</member>
|
<member name="T:System.ComponentModel.ByteConverter">
|
<summary>Provides a type converter to convert 8-bit unsigned integer objects to and from various other representations.</summary>
|
</member>
|
<member name="M:System.ComponentModel.ByteConverter.#ctor">
|
<summary>Initializes a new instance of the <see cref="T:System.ComponentModel.ByteConverter" /> class. </summary>
|
</member>
|
<member name="T:System.ComponentModel.CharConverter">
|
<summary>Provides a type converter to convert Unicode character objects to and from various other representations.</summary>
|
</member>
|
<member name="M:System.ComponentModel.CharConverter.#ctor">
|
<summary>Initializes a new instance of the <see cref="T:System.ComponentModel.CharConverter" /> class. </summary>
|
</member>
|
<member name="M:System.ComponentModel.CharConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)">
|
<summary>Gets a value indicating whether this converter can convert an object in the given source type to a Unicode character object using the specified context.</summary>
|
<returns>true if this converter can perform the conversion; otherwise, false.</returns>
|
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context. </param>
|
<param name="sourceType">A <see cref="T:System.Type" /> that represents the type you want to convert from. </param>
|
</member>
|
<member name="M:System.ComponentModel.CharConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
|
<summary>Converts the given object to a Unicode character object.</summary>
|
<returns>An <see cref="T:System.Object" /> that represents the converted <paramref name="value" />.</returns>
|
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context. </param>
|
<param name="culture">The culture into which <paramref name="value" /> will be converted.</param>
|
<param name="value">The <see cref="T:System.Object" /> to convert. </param>
|
<exception cref="T:System.FormatException">
|
<paramref name="value" /> is not a valid value for the target type. </exception>
|
<exception cref="T:System.NotSupportedException">The conversion cannot be performed. </exception>
|
</member>
|
<member name="M:System.ComponentModel.CharConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
|
<summary>Converts the given value object to a Unicode character object using the arguments.</summary>
|
<returns>An <see cref="T:System.Object" /> that represents the converted value.</returns>
|
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context. </param>
|
<param name="culture">The culture into which <paramref name="value" /> will be converted.</param>
|
<param name="value">The <see cref="T:System.Object" /> to convert. </param>
|
<param name="destinationType">The <see cref="T:System.Type" /> to convert the value to. </param>
|
<exception cref="T:System.NotSupportedException">The conversion cannot be performed. </exception>
|
</member>
|
<member name="T:System.ComponentModel.CollectionConverter">
|
<summary>Provides a type converter to convert collection objects to and from various other representations.</summary>
|
</member>
|
<member name="M:System.ComponentModel.CollectionConverter.#ctor">
|
<summary>Initializes a new instance of the <see cref="T:System.ComponentModel.CollectionConverter" /> class. </summary>
|
</member>
|
<member name="M:System.ComponentModel.CollectionConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
|
<summary>Converts the given value object to the specified destination type.</summary>
|
<returns>An <see cref="T:System.Object" /> that represents the converted value.</returns>
|
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context. </param>
|
<param name="culture">The culture to which <paramref name="value" /> will be converted.</param>
|
<param name="value">The <see cref="T:System.Object" /> to convert. This parameter must inherit from <see cref="T:System.Collections.ICollection" />. </param>
|
<param name="destinationType">The <see cref="T:System.Type" /> to convert the value to. </param>
|
<exception cref="T:System.ArgumentNullException">
|
<paramref name="destinationType" /> is null. </exception>
|
<exception cref="T:System.NotSupportedException">The conversion cannot be performed. </exception>
|
</member>
|
<member name="T:System.ComponentModel.DateTimeConverter">
|
<summary>Provides a type converter to convert <see cref="T:System.DateTime" /> objects to and from various other representations.</summary>
|
</member>
|
<member name="M:System.ComponentModel.DateTimeConverter.#ctor">
|
<summary>Initializes a new instance of the <see cref="T:System.ComponentModel.DateTimeConverter" /> class.</summary>
|
</member>
|
<member name="M:System.ComponentModel.DateTimeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)">
|
<summary>Gets a value indicating whether this converter can convert an object in the given source type to a <see cref="T:System.DateTime" /> using the specified context.</summary>
|
<returns>true if this object can perform the conversion; otherwise, false.</returns>
|
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context. </param>
|
<param name="sourceType">A <see cref="T:System.Type" /> that represents the type you wish to convert from. </param>
|
</member>
|
<member name="M:System.ComponentModel.DateTimeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
|
<summary>Gets a value indicating whether this converter can convert an object to the given destination type using the context.</summary>
|
<returns>true if this converter can perform the conversion; otherwise, false.</returns>
|
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context. </param>
|
<param name="destinationType">A <see cref="T:System.Type" /> that represents the type you wish to convert to. </param>
|
</member>
|
<member name="M:System.ComponentModel.DateTimeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
|
<summary>Converts the given value object to a <see cref="T:System.DateTime" />.</summary>
|
<returns>An <see cref="T:System.Object" /> that represents the converted <paramref name="value" />.</returns>
|
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context. </param>
|
<param name="culture">An optional <see cref="T:System.Globalization.CultureInfo" />. If not supplied, the current culture is assumed. </param>
|
<param name="value">The <see cref="T:System.Object" /> to convert. </param>
|
<exception cref="T:System.FormatException">
|
<paramref name="value" /> is not a valid value for the target type. </exception>
|
<exception cref="T:System.NotSupportedException">The conversion cannot be performed. </exception>
|
</member>
|
<member name="M:System.ComponentModel.DateTimeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
|
<summary>Converts the given value object to a <see cref="T:System.DateTime" /> using the arguments.</summary>
|
<returns>An <see cref="T:System.Object" /> that represents the converted <paramref name="value" />.</returns>
|
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context. </param>
|
<param name="culture">An optional <see cref="T:System.Globalization.CultureInfo" />. If not supplied, the current culture is assumed. </param>
|
<param name="value">The <see cref="T:System.Object" /> to convert. </param>
|
<param name="destinationType">The <see cref="T:System.Type" /> to convert the value to. </param>
|
<exception cref="T:System.NotSupportedException">The conversion cannot be performed. </exception>
|
</member>
|
<member name="T:System.ComponentModel.DateTimeOffsetConverter">
|
<summary>Provides a type converter to convert <see cref="T:System.DateTimeOffset" /> structures to and from various other representations.</summary>
|
</member>
|
<member name="M:System.ComponentModel.DateTimeOffsetConverter.#ctor">
|
<summary>Initializes a new instance of the <see cref="T:System.ComponentModel.DateTimeOffsetConverter" /> class. </summary>
|
</member>
|
<member name="M:System.ComponentModel.DateTimeOffsetConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)">
|
<summary>Returns a value that indicates whether an object of the specified source type can be converted to a <see cref="T:System.DateTimeOffset" />.</summary>
|
<returns>true if the specified type can be converted to a <see cref="T:System.DateTimeOffset" />; otherwise, false.</returns>
|
<param name="context">The date format context.</param>
|
<param name="sourceType">The source type to check.</param>
|
</member>
|
<member name="M:System.ComponentModel.DateTimeOffsetConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
|
<summary>Returns a value that indicates whether a <see cref="T:System.DateTimeOffset" /> can be converted to an object of the specified type.</summary>
|
<returns>true if a <see cref="T:System.DateTimeOffset" /> can be converted to the specified type; otherwise, false.</returns>
|
<param name="context">The date format context.</param>
|
<param name="destinationType">The destination type to check.</param>
|
</member>
|
<member name="M:System.ComponentModel.DateTimeOffsetConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
|
<summary>Converts the specified object to a <see cref="T:System.DateTimeOffset" />.</summary>
|
<returns>A <see cref="T:System.DateTimeOffset" /> that represents the specified object.</returns>
|
<param name="context">The date format context.</param>
|
<param name="culture">The date culture.</param>
|
<param name="value">The object to be converted.</param>
|
<exception cref="T:System.NotSupportedException">The conversion cannot be performed.</exception>
|
</member>
|
<member name="M:System.ComponentModel.DateTimeOffsetConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
|
<summary>Converts a <see cref="T:System.DateTimeOffset" /> to an object of the specified type.</summary>
|
<returns>An object of the specified type that represents the <see cref="T:System.DateTimeOffset" />. </returns>
|
<param name="context">The date format context.</param>
|
<param name="culture">The date culture.</param>
|
<param name="value">The <see cref="T:System.DateTimeOffset" /> to be converted.</param>
|
<param name="destinationType">The type to convert to.</param>
|
<exception cref="T:System.NotSupportedException">The conversion cannot be performed.</exception>
|
</member>
|
<member name="T:System.ComponentModel.DecimalConverter">
|
<summary>Provides a type converter to convert <see cref="T:System.Decimal" /> objects to and from various other representations.</summary>
|
</member>
|
<member name="M:System.ComponentModel.DecimalConverter.#ctor">
|
<summary>Initializes a new instance of the <see cref="T:System.ComponentModel.DecimalConverter" /> class. </summary>
|
</member>
|
<member name="M:System.ComponentModel.DecimalConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
|
<summary>Gets a value indicating whether this converter can convert an object to the given destination type using the context.</summary>
|
<returns>true if this converter can perform the conversion; otherwise, false.</returns>
|
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context. </param>
|
<param name="destinationType">A <see cref="T:System.Type" /> that represents the type you wish to convert to. </param>
|
</member>
|
<member name="M:System.ComponentModel.DecimalConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
|
<summary>Converts the given value object to a <see cref="T:System.Decimal" /> using the arguments.</summary>
|
<returns>An <see cref="T:System.Object" /> that represents the converted value.</returns>
|
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context. </param>
|
<param name="culture">An optional <see cref="T:System.Globalization.CultureInfo" />. If not supplied, the current culture is assumed. </param>
|
<param name="value">The <see cref="T:System.Object" /> to convert. </param>
|
<param name="destinationType">The <see cref="T:System.Type" /> to convert the value to. </param>
|
<exception cref="T:System.ArgumentNullException">The <paramref name="destinationType" /> is null. </exception>
|
<exception cref="T:System.NotSupportedException">The conversion cannot be performed. </exception>
|
</member>
|
<member name="T:System.ComponentModel.DoubleConverter">
|
<summary>Provides a type converter to convert double-precision, floating point number objects to and from various other representations.</summary>
|
</member>
|
<member name="M:System.ComponentModel.DoubleConverter.#ctor">
|
<summary>Initializes a new instance of the <see cref="T:System.ComponentModel.DoubleConverter" /> class. </summary>
|
</member>
|
<member name="T:System.ComponentModel.EnumConverter">
|
<summary>Provides a type converter to convert <see cref="T:System.Enum" /> objects to and from various other representations.</summary>
|
</member>
|
<member name="M:System.ComponentModel.EnumConverter.#ctor(System.Type)">
|
<summary>Initializes a new instance of the <see cref="T:System.ComponentModel.EnumConverter" /> class for the given type.</summary>
|
<param name="type">A <see cref="T:System.Type" /> that represents the type of enumeration to associate with this enumeration converter. </param>
|
</member>
|
<member name="M:System.ComponentModel.EnumConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)">
|
<summary>Gets a value indicating whether this converter can convert an object in the given source type to an enumeration object using the specified context.</summary>
|
<returns>true if this converter can perform the conversion; otherwise, false.</returns>
|
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context. </param>
|
<param name="sourceType">A <see cref="T:System.Type" /> that represents the type you wish to convert from. </param>
|
</member>
|
<member name="M:System.ComponentModel.EnumConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
|
<summary>Gets a value indicating whether this converter can convert an object to the given destination type using the context.</summary>
|
<returns>true if this converter can perform the conversion; otherwise, false.</returns>
|
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context. </param>
|
<param name="destinationType">A <see cref="T:System.Type" /> that represents the type you wish to convert to. </param>
|
</member>
|
<member name="M:System.ComponentModel.EnumConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
|
<summary>Converts the specified value object to an enumeration object.</summary>
|
<returns>An <see cref="T:System.Object" /> that represents the converted <paramref name="value" />.</returns>
|
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context. </param>
|
<param name="culture">An optional <see cref="T:System.Globalization.CultureInfo" />. If not supplied, the current culture is assumed. </param>
|
<param name="value">The <see cref="T:System.Object" /> to convert. </param>
|
<exception cref="T:System.FormatException">
|
<paramref name="value" /> is not a valid value for the target type. </exception>
|
<exception cref="T:System.NotSupportedException">The conversion cannot be performed. </exception>
|
</member>
|
<member name="M:System.ComponentModel.EnumConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
|
<summary>Converts the given value object to the specified destination type.</summary>
|
<returns>An <see cref="T:System.Object" /> that represents the converted <paramref name="value" />.</returns>
|
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context. </param>
|
<param name="culture">An optional <see cref="T:System.Globalization.CultureInfo" />. If not supplied, the current culture is assumed. </param>
|
<param name="value">The <see cref="T:System.Object" /> to convert. </param>
|
<param name="destinationType">The <see cref="T:System.Type" /> to convert the value to. </param>
|
<exception cref="T:System.ArgumentNullException">
|
<paramref name="destinationType" /> is null. </exception>
|
<exception cref="T:System.ArgumentException">
|
<paramref name="value" /> is not a valid value for the enumeration. </exception>
|
<exception cref="T:System.NotSupportedException">The conversion cannot be performed. </exception>
|
</member>
|
<member name="P:System.ComponentModel.EnumConverter.EnumType">
|
<summary>Specifies the type of the enumerator this converter is associated with.</summary>
|
<returns>The type of the enumerator this converter is associated with.</returns>
|
</member>
|
<member name="T:System.ComponentModel.GuidConverter">
|
<summary>Provides a type converter to convert <see cref="T:System.Guid" /> objects to and from various other representations.</summary>
|
</member>
|
<member name="M:System.ComponentModel.GuidConverter.#ctor">
|
<summary>Initializes a new instance of the <see cref="T:System.ComponentModel.GuidConverter" /> class. </summary>
|
</member>
|
<member name="M:System.ComponentModel.GuidConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)">
|
<summary>Gets a value indicating whether this converter can convert an object in the given source type to a GUID object using the context.</summary>
|
<returns>true if this converter can perform the conversion; otherwise, false.</returns>
|
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context. </param>
|
<param name="sourceType">A <see cref="T:System.Type" /> that represents the type you wish to convert from. </param>
|
</member>
|
<member name="M:System.ComponentModel.GuidConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
|
<summary>Gets a value indicating whether this converter can convert an object to the given destination type using the context.</summary>
|
<returns>true if this converter can perform the conversion; otherwise, false.</returns>
|
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context. </param>
|
<param name="destinationType">A <see cref="T:System.Type" /> that represents the type you wish to convert to. </param>
|
</member>
|
<member name="M:System.ComponentModel.GuidConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
|
<summary>Converts the given object to a GUID object.</summary>
|
<returns>An <see cref="T:System.Object" /> that represents the converted <paramref name="value" />.</returns>
|
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context. </param>
|
<param name="culture">An optional <see cref="T:System.Globalization.CultureInfo" />. If not supplied, the current culture is assumed. </param>
|
<param name="value">The <see cref="T:System.Object" /> to convert. </param>
|
<exception cref="T:System.NotSupportedException">The conversion cannot be performed. </exception>
|
</member>
|
<member name="M:System.ComponentModel.GuidConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
|
<summary>Converts the given object to another type.</summary>
|
<returns>The converted object.</returns>
|
<param name="context">A formatter context. </param>
|
<param name="culture">The culture into which <paramref name="value" /> will be converted.</param>
|
<param name="value">The object to convert. </param>
|
<param name="destinationType">The type to convert the object to. </param>
|
<exception cref="T:System.ArgumentNullException">
|
<paramref name="destinationType" /> is null.</exception>
|
<exception cref="T:System.NotSupportedException">The conversion cannot be performed. </exception>
|
</member>
|
<member name="T:System.ComponentModel.Int16Converter">
|
<summary>Provides a type converter to convert 16-bit signed integer objects to and from other representations.</summary>
|
</member>
|
<member name="M:System.ComponentModel.Int16Converter.#ctor">
|
<summary>Initializes a new instance of the <see cref="T:System.ComponentModel.Int16Converter" /> class. </summary>
|
</member>
|
<member name="T:System.ComponentModel.Int32Converter">
|
<summary>Provides a type converter to convert 32-bit signed integer objects to and from other representations.</summary>
|
</member>
|
<member name="M:System.ComponentModel.Int32Converter.#ctor">
|
<summary>Initializes a new instance of the <see cref="T:System.ComponentModel.Int32Converter" /> class. </summary>
|
</member>
|
<member name="T:System.ComponentModel.Int64Converter">
|
<summary>Provides a type converter to convert 64-bit signed integer objects to and from various other representations.</summary>
|
</member>
|
<member name="M:System.ComponentModel.Int64Converter.#ctor">
|
<summary>Initializes a new instance of the <see cref="T:System.ComponentModel.Int64Converter" /> class. </summary>
|
</member>
|
<member name="T:System.ComponentModel.ITypeDescriptorContext">
|
<summary>Provides contextual information about a component, such as its container and property descriptor.</summary>
|
</member>
|
<member name="P:System.ComponentModel.ITypeDescriptorContext.Container">
|
<summary>Gets the container representing this <see cref="T:System.ComponentModel.TypeDescriptor" /> request.</summary>
|
<returns>An <see cref="T:System.ComponentModel.IContainer" /> with the set of objects for this <see cref="T:System.ComponentModel.TypeDescriptor" />; otherwise, null if there is no container or if the <see cref="T:System.ComponentModel.TypeDescriptor" /> does not use outside objects.</returns>
|
</member>
|
<member name="P:System.ComponentModel.ITypeDescriptorContext.Instance">
|
<summary>Gets the object that is connected with this type descriptor request.</summary>
|
<returns>The object that invokes the method on the <see cref="T:System.ComponentModel.TypeDescriptor" />; otherwise, null if there is no object responsible for the call.</returns>
|
</member>
|
<member name="M:System.ComponentModel.ITypeDescriptorContext.OnComponentChanged">
|
<summary>Raises the <see cref="E:System.ComponentModel.Design.IComponentChangeService.ComponentChanged" /> event.</summary>
|
</member>
|
<member name="M:System.ComponentModel.ITypeDescriptorContext.OnComponentChanging">
|
<summary>Raises the <see cref="E:System.ComponentModel.Design.IComponentChangeService.ComponentChanging" /> event.</summary>
|
<returns>true if this object can be changed; otherwise, false.</returns>
|
</member>
|
<member name="P:System.ComponentModel.ITypeDescriptorContext.PropertyDescriptor">
|
<summary>Gets the <see cref="T:System.ComponentModel.PropertyDescriptor" /> that is associated with the given context item.</summary>
|
<returns>The <see cref="T:System.ComponentModel.PropertyDescriptor" /> that describes the given context item; otherwise, null if there is no <see cref="T:System.ComponentModel.PropertyDescriptor" /> responsible for the call.</returns>
|
</member>
|
<member name="T:System.ComponentModel.MultilineStringConverter">
|
<summary>Provides a type converter to convert multiline strings to a simple string.</summary>
|
</member>
|
<member name="M:System.ComponentModel.MultilineStringConverter.#ctor">
|
<summary>Initializes a new instance of the <see cref="T:System.ComponentModel.MultilineStringConverter" /> class. </summary>
|
</member>
|
<member name="M:System.ComponentModel.MultilineStringConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
|
<summary>Converts the given value object to the specified type, using the specified context and culture information.</summary>
|
<returns>An <see cref="T:System.Object" /> that represents the converted value.</returns>
|
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
|
<param name="culture">A <see cref="T:System.Globalization.CultureInfo" />. If null is passed, the current culture is assumed.</param>
|
<param name="value">The <see cref="T:System.Object" /> to convert.</param>
|
<param name="destinationType">The <see cref="T:System.Type" /> to convert the value parameter to.</param>
|
<exception cref="T:System.ArgumentNullException">
|
<paramref name="destinationType" /> is null.</exception>
|
<exception cref="T:System.NotSupportedException">The conversion cannot be performed. </exception>
|
</member>
|
<member name="T:System.ComponentModel.NullableConverter">
|
<summary>Provides automatic conversion between a nullable type and its underlying primitive type.</summary>
|
</member>
|
<member name="M:System.ComponentModel.NullableConverter.#ctor(System.Type)">
|
<summary>Initializes a new instance of the <see cref="T:System.ComponentModel.NullableConverter" /> class.</summary>
|
<param name="type">The specified nullable type.</param>
|
<exception cref="T:System.ArgumentException">
|
<paramref name="type" /> is not a nullable type.</exception>
|
</member>
|
<member name="M:System.ComponentModel.NullableConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)">
|
<summary>Returns whether this converter can convert an object of the given type to the type of this converter, using the specified context.</summary>
|
<returns>true if this converter can perform the conversion; otherwise, false.</returns>
|
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
|
<param name="sourceType">A <see cref="T:System.Type" /> that represents the type you want to convert from.</param>
|
</member>
|
<member name="M:System.ComponentModel.NullableConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
|
<summary>Returns whether this converter can convert the object to the specified type, using the specified context.</summary>
|
<returns>true if this converter can perform the conversion; otherwise, false.</returns>
|
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
|
<param name="destinationType">A <see cref="T:System.Type" /> that represents the type you want to convert to.</param>
|
</member>
|
<member name="M:System.ComponentModel.NullableConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
|
<summary>Converts the given object to the type of this converter, using the specified context and culture information.</summary>
|
<returns>An <see cref="T:System.Object" /> that represents the converted value.</returns>
|
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
|
<param name="culture">The <see cref="T:System.Globalization.CultureInfo" /> to use as the current culture.</param>
|
<param name="value">The <see cref="T:System.Object" /> to convert.</param>
|
<exception cref="T:System.NotSupportedException">The conversion cannot be performed. </exception>
|
</member>
|
<member name="M:System.ComponentModel.NullableConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
|
<summary>Converts the given value object to the specified type, using the specified context and culture information.</summary>
|
<returns>An <see cref="T:System.Object" /> that represents the converted value.</returns>
|
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
|
<param name="culture">The <see cref="T:System.Globalization.CultureInfo" /> to use as the current culture.</param>
|
<param name="value">The <see cref="T:System.Object" /> to convert.</param>
|
<param name="destinationType">The <see cref="T:System.Type" /> to convert the value parameter to.</param>
|
<exception cref="T:System.ArgumentNullException">
|
<paramref name="destinationType" /> is null.</exception>
|
<exception cref="T:System.NotSupportedException">The conversion cannot be performed. </exception>
|
</member>
|
<member name="P:System.ComponentModel.NullableConverter.NullableType">
|
<summary>Gets the nullable type.</summary>
|
<returns>A <see cref="T:System.Type" /> that represents the nullable type.</returns>
|
</member>
|
<member name="P:System.ComponentModel.NullableConverter.UnderlyingType">
|
<summary>Gets the underlying type.</summary>
|
<returns>A <see cref="T:System.Type" /> that represents the underlying type.</returns>
|
</member>
|
<member name="P:System.ComponentModel.NullableConverter.UnderlyingTypeConverter">
|
<summary>Gets the underlying type converter.</summary>
|
<returns>A <see cref="T:System.ComponentModel.TypeConverter" /> that represents the underlying type converter.</returns>
|
</member>
|
<member name="T:System.ComponentModel.PropertyDescriptor">
|
<summary>Provides an abstraction of a property on a class.</summary>
|
</member>
|
<member name="T:System.ComponentModel.SByteConverter">
|
<summary>Provides a type converter to convert 8-bit unsigned integer objects to and from a string.</summary>
|
</member>
|
<member name="M:System.ComponentModel.SByteConverter.#ctor">
|
<summary>Initializes a new instance of the <see cref="T:System.ComponentModel.SByteConverter" /> class. </summary>
|
</member>
|
<member name="T:System.ComponentModel.SingleConverter">
|
<summary>Provides a type converter to convert single-precision, floating point number objects to and from various other representations.</summary>
|
</member>
|
<member name="M:System.ComponentModel.SingleConverter.#ctor">
|
<summary>Initializes a new instance of the <see cref="T:System.ComponentModel.SingleConverter" /> class. </summary>
|
</member>
|
<member name="T:System.ComponentModel.StringConverter">
|
<summary>Provides a type converter to convert string objects to and from other representations.</summary>
|
</member>
|
<member name="M:System.ComponentModel.StringConverter.#ctor">
|
<summary>Initializes a new instance of the <see cref="T:System.ComponentModel.StringConverter" /> class. </summary>
|
</member>
|
<member name="M:System.ComponentModel.StringConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)">
|
<summary>Gets a value indicating whether this converter can convert an object in the given source type to a string using the specified context.</summary>
|
<returns>true if this converter can perform the conversion; otherwise, false.</returns>
|
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context. </param>
|
<param name="sourceType">A <see cref="T:System.Type" /> that represents the type you wish to convert from. </param>
|
</member>
|
<member name="M:System.ComponentModel.StringConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
|
<summary>Converts the specified value object to a <see cref="T:System.String" /> object.</summary>
|
<returns>An <see cref="T:System.Object" /> that represents the converted value.</returns>
|
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context. </param>
|
<param name="culture">The <see cref="T:System.Globalization.CultureInfo" /> to use. </param>
|
<param name="value">The <see cref="T:System.Object" /> to convert. </param>
|
<exception cref="T:System.NotSupportedException">The conversion could not be performed. </exception>
|
</member>
|
<member name="T:System.ComponentModel.TimeSpanConverter">
|
<summary>Provides a type converter to convert <see cref="T:System.TimeSpan" /> objects to and from other representations.</summary>
|
</member>
|
<member name="M:System.ComponentModel.TimeSpanConverter.#ctor">
|
<summary>Initializes a new instance of the <see cref="T:System.ComponentModel.TimeSpanConverter" /> class. </summary>
|
</member>
|
<member name="M:System.ComponentModel.TimeSpanConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)">
|
<summary>Gets a value indicating whether this converter can convert an object in the given source type to a <see cref="T:System.TimeSpan" /> using the specified context.</summary>
|
<returns>true if this converter can perform the conversion; otherwise, false.</returns>
|
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context. </param>
|
<param name="sourceType">A <see cref="T:System.Type" /> that represents the type you wish to convert from. </param>
|
</member>
|
<member name="M:System.ComponentModel.TimeSpanConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
|
<summary>Gets a value indicating whether this converter can convert an object to the given destination type using the context.</summary>
|
<returns>true if this converter can perform the conversion; otherwise, false.</returns>
|
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context. </param>
|
<param name="destinationType">A <see cref="T:System.Type" /> that represents the type you wish to convert to. </param>
|
<exception cref="T:System.ArgumentNullException">
|
<paramref name="destinationType" /> is null.</exception>
|
<exception cref="T:System.FormatException">
|
<paramref name="value" /> is not a valid value for the target type. </exception>
|
</member>
|
<member name="M:System.ComponentModel.TimeSpanConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
|
<summary>Converts the given object to a <see cref="T:System.TimeSpan" />.</summary>
|
<returns>An <see cref="T:System.Object" /> that represents the converted value.</returns>
|
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context. </param>
|
<param name="culture">An optional <see cref="T:System.Globalization.CultureInfo" />. If not supplied, the current culture is assumed. </param>
|
<param name="value">The <see cref="T:System.Object" /> to convert. </param>
|
<exception cref="T:System.NotSupportedException">The conversion cannot be performed. </exception>
|
<exception cref="T:System.FormatException">
|
<paramref name="value" /> is not a valid value for the target type. </exception>
|
</member>
|
<member name="M:System.ComponentModel.TimeSpanConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
|
<summary>Converts the given object to another type. </summary>
|
<returns>The converted object.</returns>
|
<param name="context">A formatter context. </param>
|
<param name="culture">The culture into which <paramref name="value" /> will be converted.</param>
|
<param name="value">The object to convert. </param>
|
<param name="destinationType">The type to convert the object to. </param>
|
</member>
|
<member name="T:System.ComponentModel.TypeConverter">
|
<summary>Provides a unified way of converting types of values to other types, as well as for accessing standard values and subproperties.</summary>
|
</member>
|
<member name="M:System.ComponentModel.TypeConverter.#ctor">
|
<summary>Initializes a new instance of the <see cref="T:System.ComponentModel.TypeConverter" /> class. </summary>
|
</member>
|
<member name="M:System.ComponentModel.TypeConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)">
|
<summary>Returns whether this converter can convert an object of the given type to the type of this converter, using the specified context.</summary>
|
<returns>true if this converter can perform the conversion; otherwise, false.</returns>
|
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context. </param>
|
<param name="sourceType">A <see cref="T:System.Type" /> that represents the type you want to convert from. </param>
|
</member>
|
<member name="M:System.ComponentModel.TypeConverter.CanConvertFrom(System.Type)">
|
<summary>Returns whether this converter can convert an object of the given type to the type of this converter.</summary>
|
<returns>true if this converter can perform the conversion; otherwise, false.</returns>
|
<param name="sourceType">A <see cref="T:System.Type" /> that represents the type you want to convert from. </param>
|
</member>
|
<member name="M:System.ComponentModel.TypeConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
|
<summary>Returns whether this converter can convert the object to the specified type, using the specified context.</summary>
|
<returns>true if this converter can perform the conversion; otherwise, false.</returns>
|
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context. </param>
|
<param name="destinationType">A <see cref="T:System.Type" /> that represents the type you want to convert to. </param>
|
</member>
|
<member name="M:System.ComponentModel.TypeConverter.CanConvertTo(System.Type)">
|
<summary>Returns whether this converter can convert the object to the specified type.</summary>
|
<returns>true if this converter can perform the conversion; otherwise, false.</returns>
|
<param name="destinationType">A <see cref="T:System.Type" /> that represents the type you want to convert to. </param>
|
</member>
|
<member name="M:System.ComponentModel.TypeConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
|
<summary>Converts the given object to the type of this converter, using the specified context and culture information.</summary>
|
<returns>An <see cref="T:System.Object" /> that represents the converted value.</returns>
|
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context. </param>
|
<param name="culture">The <see cref="T:System.Globalization.CultureInfo" /> to use as the current culture. </param>
|
<param name="value">The <see cref="T:System.Object" /> to convert. </param>
|
<exception cref="T:System.NotSupportedException">The conversion cannot be performed. </exception>
|
</member>
|
<member name="M:System.ComponentModel.TypeConverter.ConvertFrom(System.Object)">
|
<summary>Converts the given value to the type of this converter.</summary>
|
<returns>An <see cref="T:System.Object" /> that represents the converted value.</returns>
|
<param name="value">The <see cref="T:System.Object" /> to convert. </param>
|
<exception cref="T:System.NotSupportedException">The conversion cannot be performed. </exception>
|
</member>
|
<member name="M:System.ComponentModel.TypeConverter.ConvertFromInvariantString(System.String)">
|
<summary>Converts the given string to the type of this converter, using the invariant culture.</summary>
|
<returns>An <see cref="T:System.Object" /> that represents the converted text.</returns>
|
<param name="text">The <see cref="T:System.String" /> to convert. </param>
|
<exception cref="T:System.NotSupportedException">The conversion cannot be performed. </exception>
|
</member>
|
<member name="M:System.ComponentModel.TypeConverter.ConvertFromString(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.String)">
|
<summary>Converts the given text to an object, using the specified context and culture information.</summary>
|
<returns>An <see cref="T:System.Object" /> that represents the converted text.</returns>
|
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context. </param>
|
<param name="culture">A <see cref="T:System.Globalization.CultureInfo" />. If null is passed, the current culture is assumed. </param>
|
<param name="text">The <see cref="T:System.String" /> to convert. </param>
|
<exception cref="T:System.NotSupportedException">The conversion cannot be performed. </exception>
|
</member>
|
<member name="M:System.ComponentModel.TypeConverter.ConvertFromString(System.String)">
|
<summary>Converts the specified text to an object.</summary>
|
<returns>An <see cref="T:System.Object" /> that represents the converted text.</returns>
|
<param name="text">The text representation of the object to convert. </param>
|
<exception cref="T:System.NotSupportedException">The string cannot be converted into the appropriate object. </exception>
|
</member>
|
<member name="M:System.ComponentModel.TypeConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
|
<summary>Converts the given value object to the specified type, using the specified context and culture information.</summary>
|
<returns>An <see cref="T:System.Object" /> that represents the converted value.</returns>
|
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context. </param>
|
<param name="culture">A <see cref="T:System.Globalization.CultureInfo" />. If null is passed, the current culture is assumed. </param>
|
<param name="value">The <see cref="T:System.Object" /> to convert. </param>
|
<param name="destinationType">The <see cref="T:System.Type" /> to convert the <paramref name="value" /> parameter to. </param>
|
<exception cref="T:System.ArgumentNullException">The <paramref name="destinationType" /> parameter is null. </exception>
|
<exception cref="T:System.NotSupportedException">The conversion cannot be performed. </exception>
|
</member>
|
<member name="M:System.ComponentModel.TypeConverter.ConvertTo(System.Object,System.Type)">
|
<summary>Converts the given value object to the specified type, using the arguments.</summary>
|
<returns>An <see cref="T:System.Object" /> that represents the converted value.</returns>
|
<param name="value">The <see cref="T:System.Object" /> to convert. </param>
|
<param name="destinationType">The <see cref="T:System.Type" /> to convert the <paramref name="value" /> parameter to. </param>
|
<exception cref="T:System.ArgumentNullException">The <paramref name="destinationType" /> parameter is null. </exception>
|
<exception cref="T:System.NotSupportedException">The conversion cannot be performed. </exception>
|
</member>
|
<member name="M:System.ComponentModel.TypeConverter.ConvertToInvariantString(System.Object)">
|
<summary>Converts the specified value to a culture-invariant string representation.</summary>
|
<returns>A <see cref="T:System.String" /> that represents the converted value.</returns>
|
<param name="value">The <see cref="T:System.Object" /> to convert. </param>
|
<exception cref="T:System.NotSupportedException">The conversion cannot be performed. </exception>
|
</member>
|
<member name="M:System.ComponentModel.TypeConverter.ConvertToString(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
|
<summary>Converts the given value to a string representation, using the specified context and culture information.</summary>
|
<returns>An <see cref="T:System.Object" /> that represents the converted value.</returns>
|
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context. </param>
|
<param name="culture">A <see cref="T:System.Globalization.CultureInfo" />. If null is passed, the current culture is assumed. </param>
|
<param name="value">The <see cref="T:System.Object" /> to convert. </param>
|
<exception cref="T:System.NotSupportedException">The conversion cannot be performed. </exception>
|
</member>
|
<member name="M:System.ComponentModel.TypeConverter.ConvertToString(System.Object)">
|
<summary>Converts the specified value to a string representation.</summary>
|
<returns>An <see cref="T:System.Object" /> that represents the converted value.</returns>
|
<param name="value">The <see cref="T:System.Object" /> to convert. </param>
|
<exception cref="T:System.NotSupportedException">The conversion cannot be performed. </exception>
|
</member>
|
<member name="M:System.ComponentModel.TypeConverter.GetConvertFromException(System.Object)">
|
<summary>Returns an exception to throw when a conversion cannot be performed.</summary>
|
<returns>An <see cref="T:System.Exception" /> that represents the exception to throw when a conversion cannot be performed.</returns>
|
<param name="value">The <see cref="T:System.Object" /> to convert, or null if the object is not available. </param>
|
<exception cref="T:System.NotSupportedException">Automatically thrown by this method. </exception>
|
</member>
|
<member name="M:System.ComponentModel.TypeConverter.GetConvertToException(System.Object,System.Type)">
|
<summary>Returns an exception to throw when a conversion cannot be performed.</summary>
|
<returns>An <see cref="T:System.Exception" /> that represents the exception to throw when a conversion cannot be performed.</returns>
|
<param name="value">The <see cref="T:System.Object" /> to convert, or null if the object is not available. </param>
|
<param name="destinationType">A <see cref="T:System.Type" /> that represents the type the conversion was trying to convert to. </param>
|
<exception cref="T:System.NotSupportedException">Automatically thrown by this method. </exception>
|
</member>
|
<member name="T:System.ComponentModel.TypeConverterAttribute">
|
<summary>Specifies what type to use as a converter for the object this attribute is bound to.</summary>
|
</member>
|
<member name="M:System.ComponentModel.TypeConverterAttribute.#ctor(System.String)">
|
<summary>Initializes a new instance of the <see cref="T:System.ComponentModel.TypeConverterAttribute" /> class, using the specified type name as the data converter for the object this attribute is bound to.</summary>
|
<param name="typeName">The fully qualified name of the class to use for data conversion for the object this attribute is bound to. </param>
|
</member>
|
<member name="M:System.ComponentModel.TypeConverterAttribute.#ctor(System.Type)">
|
<summary>Initializes a new instance of the <see cref="T:System.ComponentModel.TypeConverterAttribute" /> class, using the specified type as the data converter for the object this attribute is bound to.</summary>
|
<param name="type">A <see cref="T:System.Type" /> that represents the type of the converter class to use for data conversion for the object this attribute is bound to. </param>
|
</member>
|
<member name="P:System.ComponentModel.TypeConverterAttribute.ConverterTypeName">
|
<summary>Gets the fully qualified type name of the <see cref="T:System.Type" /> to use as a converter for the object this attribute is bound to.</summary>
|
<returns>The fully qualified type name of the <see cref="T:System.Type" /> to use as a converter for the object this attribute is bound to, or an empty string ("") if none exists. The default value is an empty string ("").</returns>
|
</member>
|
<member name="M:System.ComponentModel.TypeConverterAttribute.Equals(System.Object)">
|
<summary>Returns whether the value of the given object is equal to the current <see cref="T:System.ComponentModel.TypeConverterAttribute" />.</summary>
|
<returns>true if the value of the given object is equal to that of the current <see cref="T:System.ComponentModel.TypeConverterAttribute" />; otherwise, false.</returns>
|
<param name="obj">The object to test the value equality of. </param>
|
</member>
|
<member name="M:System.ComponentModel.TypeConverterAttribute.GetHashCode">
|
<summary>Returns the hash code for this instance.</summary>
|
<returns>A hash code for the current <see cref="T:System.ComponentModel.TypeConverterAttribute" />.</returns>
|
</member>
|
<member name="T:System.ComponentModel.TypeDescriptor">
|
<summary>Provides information about the characteristics for a component, such as its attributes, properties, and events. This class cannot be inherited.</summary>
|
</member>
|
<member name="M:System.ComponentModel.TypeDescriptor.GetConverter(System.Type)">
|
<summary>Returns a type converter for the specified type.</summary>
|
<returns>A <see cref="T:System.ComponentModel.TypeConverter" /> for the specified type.</returns>
|
<param name="type">The <see cref="T:System.Type" /> of the target component. </param>
|
<exception cref="T:System.ArgumentNullException">
|
<paramref name="component" /> is null. </exception>
|
</member>
|
<member name="T:System.ComponentModel.TypeListConverter">
|
<summary>Provides a type converter that can be used to populate a list box with available types.</summary>
|
</member>
|
<member name="M:System.ComponentModel.TypeListConverter.#ctor(System.Type[])">
|
<summary>Initializes a new instance of the <see cref="T:System.ComponentModel.TypeListConverter" /> class using the type array as the available types.</summary>
|
<param name="types">The array of type <see cref="T:System.Type" /> to use as the available types. </param>
|
</member>
|
<member name="M:System.ComponentModel.TypeListConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)">
|
<summary>Gets a value indicating whether this converter can convert the specified <see cref="T:System.Type" /> of the source object using the given context.</summary>
|
<returns>true if this converter can perform the conversion; otherwise, false.</returns>
|
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context.</param>
|
<param name="sourceType">The <see cref="T:System.Type" /> of the source object.</param>
|
</member>
|
<member name="M:System.ComponentModel.TypeListConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
|
<summary>Gets a value indicating whether this converter can convert an object to the given destination type using the context.</summary>
|
<returns>true if this converter can perform the conversion; otherwise, false.</returns>
|
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context. </param>
|
<param name="destinationType">A <see cref="T:System.Type" /> that represents the type you wish to convert to. </param>
|
</member>
|
<member name="M:System.ComponentModel.TypeListConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
|
<summary>Converts the specified object to the native type of the converter.</summary>
|
<returns>An <see cref="T:System.Object" /> that represents the converted value.</returns>
|
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context. </param>
|
<param name="culture">A <see cref="T:System.Globalization.CultureInfo" /> that specifies the culture used to represent the font. </param>
|
<param name="value">The <see cref="T:System.Object" /> to convert. </param>
|
</member>
|
<member name="M:System.ComponentModel.TypeListConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
|
<summary>Converts the given value object to the specified destination type.</summary>
|
<returns>An <see cref="T:System.Object" /> that represents the converted <paramref name="value" />.</returns>
|
<param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext" /> that provides a format context. </param>
|
<param name="culture">An optional <see cref="T:System.Globalization.CultureInfo" />. If not supplied, the current culture is assumed. </param>
|
<param name="value">The <see cref="T:System.Object" /> to convert. </param>
|
<param name="destinationType">The <see cref="T:System.Type" /> to convert the value to. </param>
|
<exception cref="T:System.ArgumentNullException">
|
<paramref name="destinationType" /> is null. </exception>
|
<exception cref="T:System.NotSupportedException">The conversion cannot be performed. </exception>
|
</member>
|
<member name="T:System.ComponentModel.UInt16Converter">
|
<summary>Provides a type converter to convert 16-bit unsigned integer objects to and from other representations.</summary>
|
</member>
|
<member name="M:System.ComponentModel.UInt16Converter.#ctor">
|
<summary>Initializes a new instance of the <see cref="T:System.ComponentModel.UInt16Converter" /> class. </summary>
|
</member>
|
<member name="T:System.ComponentModel.UInt32Converter">
|
<summary>Provides a type converter to convert 32-bit unsigned integer objects to and from various other representations.</summary>
|
</member>
|
<member name="M:System.ComponentModel.UInt32Converter.#ctor">
|
<summary>Initializes a new instance of the <see cref="T:System.ComponentModel.UInt32Converter" /> class. </summary>
|
</member>
|
<member name="T:System.ComponentModel.UInt64Converter">
|
<summary>Provides a type converter to convert 64-bit unsigned integer objects to and from other representations.</summary>
|
</member>
|
<member name="M:System.ComponentModel.UInt64Converter.#ctor">
|
<summary>Initializes a new instance of the <see cref="T:System.ComponentModel.UInt64Converter" /> class. </summary>
|
</member>
|
</members>
|
</doc>
|