1 type derived from SymbolDocumentInfo
System.Linq.Expressions (1)
System\Linq\Expressions\SymbolDocumentInfo.cs (1)
44internal sealed class SymbolDocumentWithGuids : SymbolDocumentInfo
1 instantiation of SymbolDocumentInfo
System.Linq.Expressions (1)
System\Linq\Expressions\SymbolDocumentInfo.cs (1)
85return new SymbolDocumentInfo(fileName);
44 references to SymbolDocumentInfo
netstandard (1)
netstandard.cs (1)
1025[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Linq.Expressions.SymbolDocumentInfo))]
System.Core (1)
System.Core.cs (1)
163[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Linq.Expressions.SymbolDocumentInfo))]
System.Linq.Expressions (42)
System\Linq\Expressions\DebugInfoExpression.cs (9)
19internal DebugInfoExpression(SymbolDocumentInfo document) 73/// Gets the <see cref="SymbolDocumentInfo"/> that represents the source file. 75public SymbolDocumentInfo Document { get; } 101internal SpanDebugInfoExpression(SymbolDocumentInfo document, int startLine, int startColumn, int endLine, int endColumn) 128internal ClearDebugInfoExpression(SymbolDocumentInfo document) 150/// <param name="document">The <see cref="SymbolDocumentInfo"/> that represents the source file.</param> 156public static DebugInfoExpression DebugInfo(SymbolDocumentInfo document, int startLine, int startColumn, int endLine, int endColumn) 171/// <param name="document">The <see cref="SymbolDocumentInfo"/> that represents the source file.</param> 173public static DebugInfoExpression ClearDebugInfo(SymbolDocumentInfo document)
System\Linq\Expressions\Expression.DebuggerProxy.cs (1)
117public SymbolDocumentInfo Document => _node.Document;
System\Linq\Expressions\SymbolDocumentInfo.cs (32)
79/// Creates an instance of <see cref="SymbolDocumentInfo"/>. 81/// <param name="fileName">A <see cref="string"/> to set the <see cref="SymbolDocumentInfo.FileName"/> equal to.</param> 82/// <returns>A <see cref="SymbolDocumentInfo"/> that has the <see cref="SymbolDocumentInfo.FileName"/> property set to the specified value.</returns> 83public static SymbolDocumentInfo SymbolDocument(string fileName) 89/// Creates an instance of <see cref="SymbolDocumentInfo"/>. 91/// <param name="fileName">A <see cref="string"/> to set the <see cref="SymbolDocumentInfo.FileName"/> equal to.</param> 92/// <param name="language">A <see cref="Guid"/> to set the <see cref="SymbolDocumentInfo.Language"/> equal to.</param> 93/// <returns>A <see cref="SymbolDocumentInfo"/> that has the <see cref="SymbolDocumentInfo.FileName"/> 94/// and <see cref="SymbolDocumentInfo.Language"/> properties set to the specified value.</returns> 95public static SymbolDocumentInfo SymbolDocument(string fileName, Guid language) 101/// Creates an instance of <see cref="SymbolDocumentInfo"/>. 103/// <param name="fileName">A <see cref="string"/> to set the <see cref="SymbolDocumentInfo.FileName"/> equal to.</param> 104/// <param name="language">A <see cref="Guid"/> to set the <see cref="SymbolDocumentInfo.Language"/> equal to.</param> 105/// <param name="languageVendor">A <see cref="Guid"/> to set the <see cref="SymbolDocumentInfo.LanguageVendor"/> equal to.</param> 106/// <returns>A <see cref="SymbolDocumentInfo"/> that has the <see cref="SymbolDocumentInfo.FileName"/> 107/// and <see cref="SymbolDocumentInfo.Language"/> 108/// and <see cref="SymbolDocumentInfo.LanguageVendor"/> properties set to the specified value.</returns> 109public static SymbolDocumentInfo SymbolDocument(string fileName, Guid language, Guid languageVendor) 115/// Creates an instance of <see cref="SymbolDocumentInfo"/>. 117/// <param name="fileName">A <see cref="string"/> to set the <see cref="SymbolDocumentInfo.FileName"/> equal to.</param> 118/// <param name="language">A <see cref="Guid"/> to set the <see cref="SymbolDocumentInfo.Language"/> equal to.</param> 119/// <param name="languageVendor">A <see cref="Guid"/> to set the <see cref="SymbolDocumentInfo.LanguageVendor"/> equal to.</param> 120/// <param name="documentType">A <see cref="Guid"/> to set the <see cref="SymbolDocumentInfo.DocumentType"/> equal to.</param> 121/// <returns>A <see cref="SymbolDocumentInfo"/> that has the <see cref="SymbolDocumentInfo.FileName"/> 122/// and <see cref="SymbolDocumentInfo.Language"/> 123/// and <see cref="SymbolDocumentInfo.LanguageVendor"/> 124/// and <see cref="SymbolDocumentInfo.DocumentType"/> properties set to the specified value.</returns> 125public static SymbolDocumentInfo SymbolDocument(string fileName, Guid language, Guid languageVendor, Guid documentType)