1 type derived from SymbolDocumentInfo
System.Linq.Expressions (1)
System\Linq\Expressions\SymbolDocumentInfo.cs (1)
44
internal sealed class SymbolDocumentWithGuids :
SymbolDocumentInfo
1 instantiation of SymbolDocumentInfo
System.Linq.Expressions (1)
System\Linq\Expressions\SymbolDocumentInfo.cs (1)
85
return 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)
19
internal DebugInfoExpression(
SymbolDocumentInfo
document)
73
/// Gets the <see cref="
SymbolDocumentInfo
"/> that represents the source file.
75
public
SymbolDocumentInfo
Document { get; }
101
internal SpanDebugInfoExpression(
SymbolDocumentInfo
document, int startLine, int startColumn, int endLine, int endColumn)
128
internal ClearDebugInfoExpression(
SymbolDocumentInfo
document)
150
/// <param name="document">The <see cref="
SymbolDocumentInfo
"/> that represents the source file.</param>
156
public 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>
173
public static DebugInfoExpression ClearDebugInfo(
SymbolDocumentInfo
document)
System\Linq\Expressions\Expression.DebuggerProxy.cs (1)
117
public
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>
83
public 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>
95
public 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>
109
public 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>
125
public static
SymbolDocumentInfo
SymbolDocument(string fileName, Guid language, Guid languageVendor, Guid documentType)