Compartir a través de


Método ParserHelper.IsJson

Checks if content is possibly a JSON.

Espacio de nombres: Microsoft.WindowsAzure.Common.Internals
Ensamblado: Microsoft.WindowsAzure.Common (en Microsoft.WindowsAzure.Common.dll)

Uso

'Uso
Dim content As String
Dim validate As Boolean
Dim returnValue As Boolean

returnValue = ParserHelper.IsJson(content, validate)

Sintaxis

'Declaración
Public Shared Function IsJson ( _
    content As String, _
    <OptionalAttribute> Optional validate As Boolean = False _
) As Boolean
public static bool IsJson (
    string content,
    [OptionalAttribute] bool validate
)
public:
static bool IsJson (
    String^ content, 
    [OptionalAttribute] bool validate
)
public static boolean IsJson (
    String content, 
    /** @attribute OptionalAttribute() */ boolean validate
)
public static function IsJson (
    content : String, 
    validate : boolean
) : boolean

Parámetros

  • content
    String to check.
  • validate
    If set to true will validate entire JSON for validity otherwise will just check the first character.

Valor devuelto

True is content is possibly an JSON otherwise false.

Seguridad para subprocesos

Cualquier miembro estático público (compartido en Visual Basic) de este tipo es seguro para subprocesos. No se garantiza que los miembros de instancia sean seguros para subprocesos.

Plataformas

Plataformas de desarrollo

Windows Vista, Windows 7 y Windows Server 2008

Plataformas de destino

Vea también

Referencia

Clase ParserHelper
Miembros ParserHelper
Espacio de nombres Microsoft.WindowsAzure.Common.Internals