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

SetName() public method

Sets the unique name of the ConnectorAttributeInfo object.
public SetName ( string name ) : ConnectorAttributeInfoBuilder
name string unique name of the object.
return ConnectorAttributeInfoBuilder
        public ConnectorAttributeInfoBuilder SetName(string name)
        {
            if (StringUtil.IsBlank(name))
            {
                throw new ArgumentException("Argument must not be blank.");
            }
            _name = name;
            return this;
        }