Pchp.CodeAnalysis.Symbols.PEPropertySymbol.GetAttributes C# (CSharp) Method

GetAttributes() public method

public GetAttributes ( ) : ImmutableArray
return ImmutableArray
        public override ImmutableArray<AttributeData> GetAttributes()
        {
            //if (_lazyCustomAttributes.IsDefault)
            //{
            //    var containingPEModuleSymbol = (PEModuleSymbol)this.ContainingModule;
            //    containingPEModuleSymbol.LoadCustomAttributes(_handle, ref _lazyCustomAttributes);
            //}
            //return _lazyCustomAttributes;
            return ImmutableArray<AttributeData>.Empty;
        }