Skip to content

Latest commit

 

History

History
212 lines (200 loc) · 12.9 KB

File metadata and controls

212 lines (200 loc) · 12.9 KB
[References](Index.md)

References extended

  • SuppressMessageAttributeFactory
    • Static Methods
      • CreateCodeAnalysisSuppression(int checkId, string justification)
      • CreateStyleCopSuppression(int checkId, string justification)
  • SyntaxAccessorDeclarationFactory
    • Static Methods
      • Get(bool withSemicolon = True)
      • Set(bool withSemicolon = True)
  • SyntaxArgumentFactory
    • Static Methods
      • Create(string argumentName)
  • SyntaxArgumentListFactory
    • Static Methods
      • CreateWithOneArgumentItem(ArgumentSyntax argument)
      • CreateWithOneExpressionItem(ExpressionSyntax argumentExpression1)
      • CreateWithOneItem(string argumentName)
      • CreateWithThreeArgumentItems(ArgumentSyntax argument1, ArgumentSyntax argument2, ArgumentSyntax argument3)
      • CreateWithThreeExpressionItems(ExpressionSyntax argumentExpression1, ExpressionSyntax argumentExpression2, ExpressionSyntax argumentExpression3)
      • CreateWithTwoArgumentItems(ArgumentSyntax argument1, ArgumentSyntax argument2)
      • CreateWithTwoExpressionItems(ExpressionSyntax argumentExpression1, ExpressionSyntax argumentExpression2)
      • CreateWithTwoItems(string argumentName1, string argumentName2)
  • SyntaxAssignmentExpressionFactory
    • Static Methods
      • CreateSimple(string toIdentifierName, string fromIdentifierName)
  • SyntaxAttributeArgumentFactory
    • Static Methods
      • Create(int attributeValue)
      • Create(object attributeValue)
      • Create(string attributeValue)
      • CreateWithNameEquals(string attributeName, int attributeValue)
      • CreateWithNameEquals(string attributeName, string attributeValue)
  • SyntaxAttributeArgumentListFactory
    • Static Methods
      • CreateWithOneItemWithNameEquals(string attributeName, int attributeValue)
      • CreateWithOneItemWithNameEquals(string attributeName, string attributeValue)
  • SyntaxAttributeFactory
    • Static Methods
      • Create(string attributeName)
      • CreateFromValidationAttribute(ValidationAttribute validationAttribute)
      • CreateWithOneItemWithOneArgument(string attributeName, int argumentValue)
      • CreateWithOneItemWithOneArgument(string attributeName, string argumentValue)
      • CreateWithOneItemWithTwoArgument(string attributeName, object argumentValue1, object argumentValue2)
      • RemoveSuffix(string attributeName)
  • SyntaxAttributeListFactory
    • Static Methods
      • Create(string attributeName)
      • Create(string attributeName, AttributeArgumentListSyntax attributeArgumentList)
      • CreateWithOneItemWithOneArgument(string attributeName, string argumentValue)
      • CreateWithOneItemWithOneArgumentWithNameEquals(string attributeName, string argumentName, string argumentValue)
  • SyntaxBaseListFactory
    • Static Methods
      • CreateOneSimpleBaseType(string typeName)
      • CreateTwoSimpleBaseTypes(string typeName1, string typeName2)
  • SyntaxClassDeclarationFactory
    • Static Methods
      • Create(string classTypeName)
      • CreateAsInternalStatic(string classTypeName)
      • CreateAsPublicPartial(string classTypeName)
      • CreateAsPublicStatic(string classTypeName)
      • CreateWithInheritClassAndInterface(string classTypeName, string inheritClassTypeName, string interfaceTypeName)
      • CreateWithInheritClassType(string classTypeName, string inheritClassTypeName)
      • CreateWithInheritClassTypeAndSuppressMessageAttributeByCodeAnalysisCheckId(string classTypeName, string inheritClassTypeName, int checkId, string justification = )
      • CreateWithInheritClassTypeAndSuppressMessageAttributeByStyleCopCheckId(string classTypeName, string inheritClassTypeName, int checkId, string justification = )
      • CreateWithInterface(string classTypeName, string interfaceTypeName)
      • CreateWithSuppressMessageAttribute(string classTypeName, SuppressMessageAttribute suppressMessage)
      • CreateWithSuppressMessageAttributeByCodeAnalysisCheckId(string classTypeName, int checkId, string justification = )
      • CreateWithSuppressMessageAttributeByStyleCopCheckId(string classTypeName, int checkId, string justification = )
  • SyntaxIfStatementFactory
    • Static Methods
      • CreateParameterArgumentNullCheck(string parameterName, bool includeSystem = True)
  • SyntaxInterfaceDeclarationFactory
    • Static Methods
      • Create(string interfaceTypeName)
  • SyntaxInterpolatedFactory
    • Static Methods
      • CreateNameOf(string argumentName)
      • StringText(string value)
      • StringTextColon()
      • StringTextColonAndParenthesesStart()
      • StringTextComma()
      • StringTextDotCountColon()
      • StringTextParenthesesEnd()
  • SyntaxLiteralExpressionFactory
    • Static Methods
      • Create(int value)
      • Create(string value, SyntaxKind syntaxKind = StringLiteralExpression)
  • SyntaxMemberAccessExpressionFactory
    • Static Methods
      • Create(string memberTypeName, string memberName)
  • SyntaxNameEqualsFactory
    • Static Methods
      • Create(string value)
  • SyntaxObjectCreationExpressionFactory
    • Static Methods
      • Create(string identifierName)
      • Create(string namespaceName, string identifierName)
  • SyntaxParameterFactory
    • Static Methods
      • Create(string parameterTypeName, string parameterName, string genericListTypeName = null)
      • CreateWithAttribute(string attributeTypeName, string parameterTypeName, string parameterName)
  • SyntaxParameterListFactory
    • Static Methods
      • CreateWithOneItem(string parameterTypeName, string parameterName, string genericListTypeName = null)
      • CreateWithOneParameterItem(ParameterSyntax parameter)
      • CreateWithThreeParameterItems(ParameterSyntax parameter1, ParameterSyntax parameter2, ParameterSyntax parameter3)
      • CreateWithTwoParameterItems(ParameterSyntax parameter1, ParameterSyntax parameter2)
  • SyntaxSimpleBaseTypeFactory
    • Static Methods
      • Create(string typeName)
  • SyntaxThrowStatementFactory
    • Static Methods
      • CreateArgumentNullException(string parameterName, bool includeSystem = True)
      • CreateNotImplementedException(bool includeSystem = True)
  • SyntaxTokenFactory
    • Static Methods
      • AbstractKeyword(bool withTrailingSpace = True)
      • AsyncKeyword(bool withTrailingSpace = True)
      • ByteKeyword(bool withTrailingSpace = True)
      • CarriageReturnLineFeed()
      • Colon(bool withTrailingSpace = False)
      • Comma(bool withTrailingSpace = True)
      • DefaultKeyword(bool withTrailingSpace = True)
      • DoubleKeyword(bool withTrailingSpace = True)
      • Equals(bool withTrailingSpace = True)
      • EqualsGreaterThan(bool withTrailingSpace = True)
      • ImplicitKeyword(bool withTrailingSpace = True)
      • IntKeyword(bool withTrailingSpace = True)
      • InternalKeyword(bool withTrailingSpace = True)
      • LineFeed()
      • NewKeyword(bool withTrailingSpace = True)
      • ObjectKeyword(bool withTrailingSpace = True)
      • OperatorKeyword(bool withTrailingSpace = True)
      • OverrideKeyword(bool withTrailingSpace = True)
      • PartialKeyword(bool withTrailingSpace = True)
      • PrivateKeyword(bool withTrailingSpace = True)
      • ProtectedKeyword(bool withTrailingSpace = True)
      • PublicKeyword(bool withTrailingSpace = True)
      • ReadOnlyKeyword(bool withTrailingSpace = True)
      • Semicolon(bool withTrailingSpace = False)
      • StaticKeyword(bool withTrailingSpace = True)
      • StringKeyword(bool withTrailingSpace = True)
      • Token(SyntaxKind syntaxKind)
      • TokenWithTrailing(SyntaxKind syntaxKind, SyntaxTrivia syntaxTrivia)
      • TokenWithTrailingSpace(SyntaxKind syntaxKind)
      • VoidKeyword(bool withTrailingSpace = True)
  • SyntaxTokenListFactory
    • Static Methods
      • InternalStaticKeyword(bool withLeadingLineFeed = False, bool withTrailingSpace = True)
      • PrivateAsyncKeyword(bool withLeadingLineFeed = False, bool withTrailingSpace = True)
      • PrivateReadonlyKeyword(bool withTrailingSpace = True)
      • ProtectedReadOnlyKeyword(bool withLeadingLineFeed = False, bool withTrailingSpace = True)
      • ProtectedStaticKeyword(bool withLeadingLineFeed = False, bool withTrailingSpace = True)
      • PublicAsyncKeyword(bool withLeadingLineFeed = False, bool withTrailingSpace = True)
      • PublicKeyword(bool withLeadingLineFeed = False, bool withTrailingSpace = True)
      • PublicOverrideKeyword(bool withLeadingLineFeed = False, bool withTrailingSpace = True)
      • PublicStaticKeyword(bool withLeadingLineFeed = False, bool withTrailingSpace = True)
  • SyntaxTypeArgumentListFactory
    • Static Methods
      • CreateWithOneItem(string typeName)
      • CreateWithTwoItems(string typeName1, string typeName2)
  • SyntaxVariableDeclarationFactory
    • Static Methods
      • Create(string identifierTypeName, string identifierName)
  • ClassDeclarationSyntaxExtensions
    • Static Methods
      • AddGeneratedCodeAttribute(this ClassDeclarationSyntax classDeclaration, string toolName, string version)
      • AddSuppressMessageAttribute(this ClassDeclarationSyntax classDeclaration, SuppressMessageAttribute suppressMessage)
  • CompilationUnitSyntaxExtensions
    • Static Methods
      • AddUsingStatements(this CompilationUnitSyntax compilationUnit, string[] usingStatements)
  • EnumDeclarationSyntaxExtensions
    • Static Methods
      • AddFlagAttribute(this EnumDeclarationSyntax enumDeclaration)
      • AddSuppressMessageAttribute(this EnumDeclarationSyntax enumDeclaration, SuppressMessageAttribute suppressMessage)
      • HasAttributeOfAttributeType(this EnumDeclarationSyntax enumDeclaration, Type attributeType)
  • InterfaceDeclarationSyntaxExtensions
    • Static Methods
      • AddGeneratedCodeAttribute(this InterfaceDeclarationSyntax interfaceDeclaration, string toolName, string version)
  • MethodDeclarationSyntaxExtensions
    • Static Methods
      • AddSuppressMessageAttribute(this MethodDeclarationSyntax methodDeclaration, SuppressMessageAttribute suppressMessage)
  • SyntaxNodeExtensions
    • Static Methods
      • GetUsedUsingStatements(this SyntaxNode syntaxNode)
      • GetUsedUsingStatementsWithoutAlias(this SyntaxNode syntaxNode)
      • Select(this SyntaxNode syntaxNode)
      • SelectToArray(this SyntaxNode syntaxNode)
  • UsingDirectiveSyntaxExtensions

Generated by MarkdownCodeDoc version 1.2