16 references to GetBestTypeByMetadataName
Microsoft.Gen.Logging (16)
Parsing\SymbolLoader.cs (14)
56
var loggerSymbol = compilation.
GetBestTypeByMetadataName
(ILoggerType);
57
var logLevelSymbol = compilation.
GetBestTypeByMetadataName
(LogLevelType);
58
var loggerMessageAttributeSymbol = compilation.
GetBestTypeByMetadataName
(LoggerMessageAttribute);
59
var logPropertiesAttributeSymbol = compilation.
GetBestTypeByMetadataName
(LogPropertiesAttribute);
60
var tagProviderAttributeSymbol = compilation.
GetBestTypeByMetadataName
(TagProviderAttribute);
61
var tagNameAttributeSymbol = compilation.
GetBestTypeByMetadataName
(TagNameAttribute);
62
var tagCollectorSymbol = compilation.
GetBestTypeByMetadataName
(ITagCollectorType);
63
var logPropertyIgnoreAttributeSymbol = compilation.
GetBestTypeByMetadataName
(LogPropertyIgnoreAttribute);
64
var dataClassificationAttribute = compilation.
GetBestTypeByMetadataName
(DataClassificationAttribute);
65
var noDataClassificationAttribute = compilation.
GetBestTypeByMetadataName
(NoDataClassificationAttribute);
82
var exceptionSymbol = compilation.
GetBestTypeByMetadataName
(ExceptionType);
90
var formatProviderSymbol = compilation.
GetBestTypeByMetadataName
(IFormatProviderType)!;
91
var spanFormattableSymbol = compilation.
GetBestTypeByMetadataName
(ISpanFormattableType);
97
var s = compilation.
GetBestTypeByMetadataName
(ign);
src\Generators\Shared\RoslynExtensions.cs (2)
96
/// A thin wrapper over <see cref="
GetBestTypeByMetadataName
(Compilation, string)"/>,
104
:
GetBestTypeByMetadataName
(compilation, type.FullName);