MixinRefactoring.PropertySyntaxReader.PropertySyntaxReader C# (CSharp) Method

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
        public PropertySyntaxReader(IPropertyList propertyList,SemanticModel semantic):base(semantic)
        {
            _properties = propertyList;
        }