2 writes to _error
PresentationFramework (2)
MS\Internal\Data\PathParser.cs (2)
64
private void SetError(string id, params object[] args) =>
_error
= SR.Format(SR.GetResourceString(id), args);
99
_error
= null;
2 references to _error
PresentationFramework (2)
MS\Internal\Data\PathParser.cs (2)
63
public string Error =>
_error
;
164
return
_error
is null ? _sourceValueInfos.ToArray() : Array.Empty<SourceValueInfo>();