Método ParserHelper.IsJson (String, Boolean)
Verifica se o conteúdo possivelmente é JSON.
Namespace: Microsoft.WindowsAzure.Common.Internals
Assembly: Microsoft.WindowsAzure.Common (em Microsoft.WindowsAzure.Common.dll)
Sintaxe
public static bool IsJson(
string content,
bool validate = false
)
public:
static bool IsJson(
String^ content,
bool validate = false
)
static member IsJson :
content:string *
validate:bool = false -> bool
Public Shared Function IsJson (
content As String,
validate As Boolean
) As Boolean
Parâmetros
content
Type: System.StringCadeia de caracteres para verificar.
validate
Type: System.BooleanSe definido como true irá validar todo JSON para validade apenas verificará se o primeiro caractere.
Valor de retorno
Type: System.Boolean
VERDADEIRO se o conteúdo é possivelmente um JSON caso contrário, false.
Consulte também
Classe ParserHelper
Namespace Microsoft.WindowsAzure.Common.Internals
Retornar ao topo