Прочетете на английски Редактиране

Споделяне чрез


LowerCaseStringConverter.CanConvertFrom(ITypeDescriptorContext, Type) Method

Definition

Determines whether an object can be converted to a lowercase string based on the specified parameters.

C#
public override bool CanConvertFrom(System.ComponentModel.ITypeDescriptorContext ctx, Type type);

Parameters

ctx
ITypeDescriptorContext

An object that implements the ITypeDescriptorContext interface.

type
Type

The type of object to convert.

Returns

true if the parameters describe an object that can be converted to a lowercase string object; otherwise, false.

Examples

The following example demonstrates how to use this method.

C#
// CanConvertFrom method.
Console.WriteLine("CanConvertFrom: {0}",
  myLCStrConverter.CanConvertFrom(ctx, testStrVal.GetType()));

Remarks

This method uses an object that implements the ITypeDescriptorContext interface as the ctx parameter. This interface provides contextual information about a component. Typically, this interface is used at design time to provide information about a design-time container. The ITypeDescriptorContext is commonly used in type conversion. Override this method in a derived class if custom behavior is required.

Applies to

Продукт Версии
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also