Typeof.JScriptTypeof(Object) Método

Definição

Determina o tipo de dados do objeto especificado.Determines the data type of the specified object.

Esta API dá suporte à infraestrutura do produto e não deve ser usada diretamente do seu código.

public:
 static System::String ^ JScriptTypeof(System::Object ^ value);
public static string JScriptTypeof (object value);
static member JScriptTypeof : obj -> string
Public Shared Function JScriptTypeof (value As Object) As String

Parâmetros

value
Object

O objeto cujo tipo será determinado.The object to determine the type of.

Retornos

String

O tipo de value.The type of value.

Comentários

O valor de retorno pode ser um dos literais de cadeia de caracteres a seguir:The return value can be one of the following string literals:

  • booleanoboolean

  • datedate

  • funçãofunction

  • númeronumber

  • objectobject

  • stringstring

  • não definidoundefined

  • unknownunknown

Aplica-se a