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

SetCreatable() public method

Determines if the attribute is writable.
public SetCreatable ( bool value ) : ConnectorAttributeInfoBuilder
value bool
return ConnectorAttributeInfoBuilder
        public ConnectorAttributeInfoBuilder SetCreatable(bool value)
        {
            SetFlag(ConnectorAttributeInfo.Flags.NOT_CREATABLE, !value);
            return this;
        }