Method | Description | |
---|---|---|
CanConvertFrom ( ITypeDescriptorContext context, |
Returns whether this converter can convert an string to a cryptographic seed, using the specified context.
|
|
ConvertFrom ( ITypeDescriptorContext context, |
Converts a string to a cryptographic seed, using the specified context and culture information.
|
|
ConvertTo ( ITypeDescriptorContext context, |
Converts a cryptographic seed to string, using the specified context and culture information.
|
public CanConvertFrom ( ITypeDescriptorContext context, |
||
context | ITypeDescriptorContext | /// An System.ComponentModel.ITypeDescriptorContext that provides a format context. /// |
sourceType | /// A System.Type that represents the type you want to convert from. /// | |
return | bool |
public ConvertFrom ( ITypeDescriptorContext context, |
||
context | ITypeDescriptorContext | /// An System.ComponentModel.ITypeDescriptorContext that provides a format context. /// |
culture | /// The System.Globalization.CultureInfo to use as the current culture. /// | |
value | object | /// The System.Object to convert. /// |
return | object |
public ConvertTo ( ITypeDescriptorContext context, |
||
context | ITypeDescriptorContext | /// An System.ComponentModel.ITypeDescriptorContext that provides a format context. /// |
culture | /// A System.Globalization.CultureInfo. If null is passed, the current culture is assumed. /// | |
value | object | /// The cryptographic seed to convert. /// |
destinationType | /// The System.Type to convert the value parameter to. /// | |
return | object |