JsonElement.TryGetGuid(Guid) Method

Definition

Attempts to represent the current JSON string as a Guid.

public:
 bool TryGetGuid([Runtime::InteropServices::Out] Guid % value);
public bool TryGetGuid (out Guid value);
member this.TryGetGuid : Guid -> bool
Public Function TryGetGuid (ByRef value As Guid) As Boolean

Parameters

value
Guid

When this method returns, contains the GUID equivalent to the current JSON string if the conversion succeeded, or Empty if the conversion failed.

Returns

true if the string can be represented as a Guid; otherwise, false.

Exceptions

The parent JsonDocument has been disposed.

Remarks

This method does not create a Guid representation of values other than JSON strings.

Applies to