StructuralObject.GetValidValue Método

Definición

Sobrecargas

GetValidValue(Byte[])

Devuelve una copia del valor de byte actual.

GetValidValue<T>(T, String, Boolean, Boolean)

Devuelve un tipo complejo para la propiedad especificada.

GetValidValue(Byte[])

Devuelve una copia del valor de byte actual.

protected public:
 static cli::array <System::Byte> ^ GetValidValue(cli::array <System::Byte> ^ currentValue);
protected internal static byte[] GetValidValue (byte[] currentValue);
static member GetValidValue : byte[] -> byte[]
Protected Friend Shared Function GetValidValue (currentValue As Byte()) As Byte()

Parámetros

currentValue
Byte[]

Valor actual de la matriz de bytes.

Devoluciones

Byte[]

Copia del valor Byte actual.

Se aplica a

GetValidValue<T>(T, String, Boolean, Boolean)

Devuelve un tipo complejo para la propiedad especificada.

protected public:
generic <typename T>
 where T : System::Data::Objects::DataClasses::ComplexObjectgcnew() T GetValidValue(T currentValue, System::String ^ property, bool isNullable, bool isInitialized);
protected internal T GetValidValue<T> (T currentValue, string property, bool isNullable, bool isInitialized) where T : System.Data.Objects.DataClasses.ComplexObject, new();
member this.GetValidValue : 'T * string * bool * bool -> 'T (requires 'T :> System.Data.Objects.DataClasses.ComplexObject and 'T : (new : unit -> 'T))
Protected Friend Function GetValidValue(Of T As {ComplexObjectNew}) (currentValue As T, property As String, isNullable As Boolean, isInitialized As Boolean) As T

Parámetros de tipo

T

Tipo del objeto complejo que se va a solicitar.

Parámetros

currentValue
T

Objeto complejo que hereda de un objeto complejo.

property
String

Nombre de la propiedad compleja que es el objeto complejo.

isNullable
Boolean

Indica si el tipo admite valores NULL:

isInitialized
Boolean

Indica si el tipo está inicializado.

Devoluciones

T

Objeto de tipo complejo para la propiedad.

Se aplica a