Microsoft.CSharp.RuntimeBinder.Semantics.MethodSymbol.isSetAccessor C# (CSharp) Метод

isSetAccessor() публичный Метод

public isSetAccessor ( ) : bool
Результат 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);
        }
    }