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

Method TryGetValue

dotnet/src/webdriver/BiDi/Optional.cs:37–41  ·  view source on GitHub ↗
(out T value)

Source from the content-addressed store, hash-verified

35 }
36
37 public bool TryGetValue(out T value)
38 {
39 value = _value;
40 return HasValue;
41 }
42
43 // implicit conversion from T -> Optional<T>
44 public static implicit operator Optional<T>(T value) => new(value);

Callers 15

ServePageMethod · 0.45
FromDictionaryMethod · 0.45
GetElementIdMethod · 0.45
GetDescriptionMethod · 0.45
FromDictionaryMethod · 0.45
StackTraceElementMethod · 0.45
GetCommandInfoMethod · 0.45
ExecuteGetTimeoutMethod · 0.45
TryGetKnownCapabilityMethod · 0.45
ResultFromErrorMethod · 0.45

Calls

no outgoing calls

Tested by 1

ServePageMethod · 0.36