Pchp.CodeAnalysis.Symbols.PropertySymbol.GetSynthesizedSealedAccessor C# (CSharp) Méthode

GetSynthesizedSealedAccessor() private méthode

private GetSynthesizedSealedAccessor ( MethodKind targetMethodKind ) : Microsoft.Cci.IMethodReference
targetMethodKind MethodKind
Résultat Microsoft.Cci.IMethodReference
        private Cci.IMethodReference GetSynthesizedSealedAccessor(MethodKind targetMethodKind)
        {
            //SourcePropertySymbol sourceProperty = this as SourcePropertySymbol;
            //if ((object)sourceProperty != null)
            //{
            //    SynthesizedSealedPropertyAccessor synthesized = sourceProperty.SynthesizedSealedAccessorOpt;
            //    return (object)synthesized != null && synthesized.MethodKind == targetMethodKind ? synthesized : null;
            //}

            return null;
        }
    }