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