Microsoft.CSharp.RuntimeBinder.Semantics.MethodSymbol.isSetAccessor C# (CSharp) Méthode

isSetAccessor() public méthode

public isSetAccessor ( ) : bool
Résultat bool
        public bool isSetAccessor()
        {
            if (!isPropertyAccessor())
            {
                return false;
            }

            PropertySymbol property = getProperty();

            if (property == null)
            {
                Debug.Assert(false, "cannot find property for accessor");
                return false;
            }

            return (this == property.methSet);
        }
    }