Compartir a través de


DataParameter.TryConvertValue (Método)

Intenta convertir el valor especificado al tipo especificado.

Espacio de nombres:  Microsoft.VisualStudio.Data.Framework
Ensamblado:  Microsoft.VisualStudio.Data.Framework (en Microsoft.VisualStudio.Data.Framework.dll)

Sintaxis

'Declaración
Protected Overridable Function TryConvertValue ( _
    value As Object, _
    type As String _
) As Object
protected virtual Object TryConvertValue(
    Object value,
    string type
)
protected:
virtual Object^ TryConvertValue(
    Object^ value, 
    String^ type
)
abstract TryConvertValue : 
        value:Object * 
        type:string -> Object 
override TryConvertValue : 
        value:Object * 
        type:string -> Object 
protected function TryConvertValue(
    value : Object, 
    type : String
) : Object

Parámetros

Valor devuelto

Tipo: System.Object
El valor convertido, o nullreferencia null (Nothing en Visual Basic) si no hay conversión posible.

Comentarios

Este método llama la implementación base de OnTypeChanged para intentar convertir cualquier valor de parámetro actualmente establecido al nuevo tipo.El método debe controlar cualquier entrada de valor, incluidos Value y nullreferencia null (Nothing en Visual Basic).

En el caso de DBNull, el método debe devolver simplemente DBNull.En el caso de null, debe devolver null.

La implementación base de este método controla el caso de DBNull y devuelve null para todos los demás casos.

Seguridad de .NET Framework

Vea también

Referencia

DataParameter Clase

Microsoft.VisualStudio.Data.Framework (Espacio de nombres)