2 instantiations of XmlLocation
Microsoft.CodeAnalysis (2)
Diagnostic\XmlLocation.cs (2)
33return new XmlLocation(path, lineNumber, columnNumber); 45return new XmlLocation(path, lineNumber, columnNumber);
7 references to XmlLocation
Microsoft.CodeAnalysis (5)
Diagnostic\XmlLocation.cs (5)
16internal class XmlLocation : Location, IEquatable<XmlLocation?> 27public static XmlLocation Create(XmlException exception, string path) 36public static XmlLocation Create(XObject obj, string path) 61public bool Equals(XmlLocation? other) 73return this.Equals(obj as XmlLocation);
Microsoft.CodeAnalysis.CSharp (2)
Compiler\DocumentationCommentCompiler.IncludeElementExpander.cs (2)
404Location errorLocation = XmlLocation.Create(e, resolvedFilePath); 487location = XmlLocation.Create(includeElement, currentXmlFilePath);