Org.IdentityConnectors.Framework.Common.Objects.ConnectorAttributeInfoBuilder.SetUpdateable C# (CSharp) Method

SetUpdateable() public method

Determines if this attribute writable during update.
public SetUpdateable ( bool value ) : ConnectorAttributeInfoBuilder
value bool
return ConnectorAttributeInfoBuilder
        public ConnectorAttributeInfoBuilder SetUpdateable(bool value)
        {
            SetFlag(ConnectorAttributeInfo.Flags.NOT_UPDATEABLE, !value);
            return this;
        }