17 references to GetConstructorArgument
Microsoft.CodeAnalysis.CSharp (7)
Symbols\Source\SourceAssemblySymbol.cs (1)
2556
int arg = attribute.
GetConstructorArgument
<int>(i, SpecialType.System_Int32);
Symbols\Source\SourceMethodSymbolWithAttributes.cs (3)
336
string? name = attributeData.
GetConstructorArgument
<string>(0, SpecialType.System_String);
695
string name = attribute.
GetConstructorArgument
<string>(0, SpecialType.System_String);
789
string? moduleName = attribute.
GetConstructorArgument
<string>(0, SpecialType.System_String);
Symbols\Source\SourceModuleSymbol.cs (1)
515
CharSet charSet = attribute.
GetConstructorArgument
<CharSet>(0, SpecialType.System_Enum);
Symbols\Source\SourceNamedTypeSymbol.cs (2)
941
string? name = attributeData.
GetConstructorArgument
<string>(0, SpecialType.System_String);
1298
string name = attribute.
GetConstructorArgument
<string>(0, SpecialType.System_String);
Microsoft.CodeAnalysis.VisualBasic (10)
Symbols\Attributes\AttributeData.vb (2)
496
Dim guidString As String = Me.
GetConstructorArgument
(Of String)(0, SpecialType.System_String)
509
Return Me.
GetConstructorArgument
(Of String)(0, SpecialType.System_String)
Symbols\Source\SourceAssemblySymbol.vb (1)
1134
Dim arg As Integer = attrData.
GetConstructorArgument
(Of Integer)(i, SpecialType.System_Int32)
Symbols\Source\SourceMethodSymbol.vb (1)
1526
Dim conditionalSymbol As String = attrdata.
GetConstructorArgument
(Of String)(0, SpecialType.System_String)
Symbols\Source\SourceModuleSymbol.vb (1)
1098
Dim charSet As CharSet = attrData.
GetConstructorArgument
(Of CharSet)(0, SpecialType.System_Enum)
Symbols\Source\SourceNamedTypeSymbol.vb (1)
2035
Dim conditionalSymbol As String = attrdata.
GetConstructorArgument
(Of String)(0, SpecialType.System_String)
Symbols\Source\SourceNamedTypeSymbol_GroupClass.vb (4)
29
Dim baseTypeNames() As String = If(attributeData.
GetConstructorArgument
(Of String)(0, SpecialType.System_String), "").Split(separatorComma, StringSplitOptions.None)
30
Dim createMethods() As String = If(attributeData.
GetConstructorArgument
(Of String)(1, SpecialType.System_String), "").Split(separatorComma, StringSplitOptions.None)
31
Dim disposeMethods() As String = If(attributeData.
GetConstructorArgument
(Of String)(2, SpecialType.System_String), "").Split(separatorComma, StringSplitOptions.None)
37
defaultInstances = If(attributeData.
GetConstructorArgument
(Of String)(3, Microsoft.CodeAnalysis.SpecialType.System_String), "").Split(separatorComma, StringSplitOptions.None)