C# Class MixinRefactoring.PropertySyntaxReader

Inheritance: SyntaxWalkerWithSemantic
显示文件 Open project: pgenfer/mixinSharp

Public Methods

Method Description
PropertySyntaxReader ( IPropertyList propertyList, Microsoft.CodeAnalysis.SemanticModel semantic ) : Microsoft.CodeAnalysis

Creates a new property syntax reader to read the properties of a provided class declaration. All properties will be stored in the given list of properties

VisitPropertyDeclaration ( Microsoft.CodeAnalysis.CSharp.Syntax.PropertyDeclarationSyntax node ) : void

Method Details

PropertySyntaxReader() public method

Creates a new property syntax reader to read the properties of a provided class declaration. All properties will be stored in the given list of properties
public PropertySyntaxReader ( IPropertyList propertyList, Microsoft.CodeAnalysis.SemanticModel semantic ) : Microsoft.CodeAnalysis
propertyList IPropertyList list where the found /// properties should be stored in
semantic Microsoft.CodeAnalysis.SemanticModel Semantic Model is used /// to resolve type syntax into TypeSymbols.
return Microsoft.CodeAnalysis

VisitPropertyDeclaration() public method

public VisitPropertyDeclaration ( Microsoft.CodeAnalysis.CSharp.Syntax.PropertyDeclarationSyntax node ) : void
node Microsoft.CodeAnalysis.CSharp.Syntax.PropertyDeclarationSyntax
return void