Freigeben über


JsonPatch.ToString Method

Definition

Overloads

Name Description
ToString(String)

Returns a string representation of the object using the specified format.

ToString()

Returns the fully qualified type name of this instance.

ToString(String)

Source:
JsonPatch.cs

Returns a string representation of the object using the specified format.

public string ToString(string format);
override this.ToString : string -> string
Public Function ToString (format As String) As String

Parameters

format
String

The format to return 'J' for application/json or 'JP' for application/json-patch+json.

Returns

A string that represents the object, formatted according to the specified format.

Applies to

ToString()

Source:
JsonPatch.cs

Returns the fully qualified type name of this instance.

public override string ToString();
override this.ToString : unit -> string
Public Overrides Function ToString () As String

Returns

The fully qualified type name.

Applies to