本文整理汇总了C#中Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax.WithAttributeLists方法的典型用法代码示例。如果您正苦于以下问题:C# MethodDeclarationSyntax.WithAttributeLists方法的具体用法?C# MethodDeclarationSyntax.WithAttributeLists怎么用?C# MethodDeclarationSyntax.WithAttributeLists使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Microsoft.CodeAnalysis.CSharp.Syntax.MethodDeclarationSyntax
的用法示例。
在下文中一共展示了MethodDeclarationSyntax.WithAttributeLists方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: NormalizeMethod
/// <summary>
/// Normalizes the given <paramref name="methodDeclaration" /> and adds the generated members. The method ensures that the
/// normalized method is marked with <paramref name="attribute" />, if non-<c>null</c>.
/// </summary>
/// <param name="methodDeclaration">The method declaration that should be normalized.</param>
/// <param name="attribute">The attribute the generated method should be marked with.</param>
private MethodDeclarationSyntax NormalizeMethod(MethodDeclarationSyntax methodDeclaration, Type attribute = null)
{
var originalDeclaration = methodDeclaration;
var methodDelegate = CreateDelegate(methodDeclaration);
var methodField = CreateField(methodDelegate);
// Create the private port implementation method
var methodName = ("Behavior" + _portCount).ToSynthesized();
var portImplementationName = SyntaxFactory.Identifier(methodName).WithTrivia(originalDeclaration.Identifier);
var portImplementation = originalDeclaration.WithIdentifier(portImplementationName);
portImplementation = portImplementation.WithAccessibility(Accessibility.Private).WithExplicitInterfaceSpecifier(null);
// Remove all modifiers from the port implementation except for the 'private' keyword
var modifiers = portImplementation.Modifiers;
var privateKeyword = modifiers[modifiers.IndexOf(SyntaxKind.PrivateKeyword)];
portImplementation = portImplementation.WithModifiers(SyntaxTokenList.Create(privateKeyword));
// Replace all original attributes with their global name, as the required 'usings' are not present in the generated file
var attributeSymbols = originalDeclaration.GetMethodSymbol(SemanticModel).GetAttributes();
if (attributeSymbols.Length != 0)
{
var attributes = attributeSymbols.Select(a => (AttributeListSyntax)Syntax.Attribute(a));
methodDeclaration = methodDeclaration.WithAttributeLists(SyntaxFactory.List(attributes));
}
// Add the requested attribute if it is not already present
if (attribute != null && !originalDeclaration.HasAttribute(SemanticModel, attribute))
{
var attributeSyntax = (AttributeListSyntax)Syntax.Attribute(attribute.FullName).WithTrailingSpace();
methodDeclaration = methodDeclaration.WithAttributeLists(methodDeclaration.AttributeLists.Add(attributeSyntax));
}
// Replace the method's body and ensure that we don't modify the line count of the containing type
// We don't change abstract methods, however, except for adding the requested attribute, if necessary
if (methodDeclaration.Modifiers.IndexOf(SyntaxKind.AbstractKeyword) != -1)
return methodDeclaration;
// Add the [MethodBehavior] attribute
var behaviorArgument = SyntaxFactory.ParseExpression(String.Format("\"{0}\"", methodName));
var behaviorAttribute = SyntaxBuilder.Attribute(typeof(IntendedBehaviorAttribute).FullName, behaviorArgument);
methodDeclaration = methodDeclaration.WithAttributeLists(methodDeclaration.AttributeLists.Add(behaviorAttribute));
// Add the [DebuggerHidden] attribute if not already present
if (!originalDeclaration.HasAttribute<DebuggerHiddenAttribute>(SemanticModel))
methodDeclaration = methodDeclaration.WithAttributeLists(methodDeclaration.AttributeLists.Add(_debuggerHiddenAttribute));
// Add the [Ignore] attribute if not already present
if (!originalDeclaration.HasAttribute<SuppressTransformationAttribute>(SemanticModel))
{
portImplementation = portImplementation.WithAttributeLists(portImplementation.AttributeLists.Add(_ignoreAttribute));
portImplementation = portImplementation.RemoveComments().WithTrivia(originalDeclaration);
}
// Add the backing field attribute and replace the method body
methodDeclaration = AddBackingFieldAttribute(methodDeclaration);
methodDeclaration = ReplaceBodyWithDelegateInvocation(methodDeclaration);
methodDeclaration = methodDeclaration.RemoveComments().WithTrivia(originalDeclaration);
++_portCount;
AddMembers(originalDeclaration.GetMethodSymbol(SemanticModel).ContainingType, methodField, methodDelegate, methodDeclaration);
return portImplementation.EnsureLineCount(originalDeclaration);
}
示例2: AddBackingFieldAttribute
/// <summary>
/// Adds the [BackingField] attribute to <paramref name="methodDeclaration" />.
/// </summary>
/// <param name="methodDeclaration">The method declaration the attribute should be added to.</param>
private MethodDeclarationSyntax AddBackingFieldAttribute(MethodDeclarationSyntax methodDeclaration)
{
var backingFieldArgument = SyntaxFactory.ParseExpression(String.Format("\"{0}\"", GetFieldName()));
var backingFieldAttribute = SyntaxBuilder.Attribute(typeof(BackingFieldAttribute).FullName, backingFieldArgument);
return methodDeclaration.WithAttributeLists(methodDeclaration.AttributeLists.Add(backingFieldAttribute));
}
示例3: NormalizeExternMethod
/// <summary>
/// Normalizes the <paramref name="methodDeclaration" /> and adds the generated members.
/// </summary>
/// <param name="methodDeclaration">The method declaration that should be normalized.</param>
private MethodDeclarationSyntax NormalizeExternMethod(MethodDeclarationSyntax methodDeclaration)
{
var originalDeclaration = methodDeclaration;
var methodDelegate = CreateDelegate(methodDeclaration);
var methodField = CreateField(methodDelegate);
// Add the [Required] attribute if it is not already present
if (!methodDeclaration.HasAttribute<RequiredAttribute>(SemanticModel))
{
methodDeclaration = methodDeclaration.RemoveTrivia();
methodDeclaration = methodDeclaration.WithAttributeLists(methodDeclaration.AttributeLists.Add(_requiredAttribute.WithTrailingSpace()));
}
// Remove the 'extern' keyword from the method
var externIndex = methodDeclaration.Modifiers.IndexOf(SyntaxKind.ExternKeyword);
methodDeclaration = methodDeclaration.WithModifiers(methodDeclaration.Modifiers.RemoveAt(externIndex));
// Add the [DebuggerHidden] attribute if it is not already present
if (!originalDeclaration.HasAttribute<DebuggerHiddenAttribute>(SemanticModel))
methodDeclaration = methodDeclaration.WithAttributeLists(methodDeclaration.AttributeLists.Add(_debuggerHiddenAttribute));
// Replace the method's body and ensure that we don't modify the line count of the containing type
methodDeclaration = AddBackingFieldAttribute(methodDeclaration);
methodDeclaration = ReplaceBodyWithDelegateInvocation(methodDeclaration);
methodDeclaration = methodDeclaration.NormalizeWhitespace();
methodDeclaration = methodDeclaration.WithTrivia(originalDeclaration);
++_portCount;
AddMembers(originalDeclaration.GetMethodSymbol(SemanticModel).ContainingType, methodField, methodDelegate);
return methodDeclaration.EnsureLineCount(originalDeclaration);
}