MCPcopy Create free account
hub / github.com/SeleniumHQ/selenium / ToString

Method ToString

dotnet/src/webdriver/Response.cs:199–202  ·  view source on GitHub ↗

Returns the object as a string. A string with the Session ID, status value, and the value from JSON.

()

Source from the content-addressed store, hash-verified

197 /// </summary>
198 /// <returns>A string with the Session ID, status value, and the value from JSON.</returns>
199 public override string ToString()
200 {
201 return string.Format(CultureInfo.InvariantCulture, "({0} {1}: {2})", this.SessionId, this.Status, this.Value);
202 }
203}
204
205[JsonSerializable(typeof(object))]

Callers 1

FromJsonMethod · 0.45

Calls 1

FormatMethod · 0.80

Tested by

no test coverage detected