BlueCollar.Service.ApplicationElement.IsReadOnly C# (CSharp) Method

IsReadOnly() public method

Gets a value indicating whether this element is read-only.
public IsReadOnly ( ) : bool
return bool
        public override bool IsReadOnly()
        {
            #if DEBUG
            return false;
            #else
            return true;
            #endif
        }
ApplicationElement