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

SetReadable() public method

Determines if the attribute is readable.
public SetReadable ( bool value ) : ConnectorAttributeInfoBuilder
value bool
return ConnectorAttributeInfoBuilder
        public ConnectorAttributeInfoBuilder SetReadable(bool value)
        {
            SetFlag(ConnectorAttributeInfo.Flags.NOT_READABLE, !value);
            return this;
        }