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

SetValueType() public method

Please see FrameworkUtil.CheckAttributeType(Type) for the definitive list of supported types.
if the Class is not a supported type.
public SetValueType ( Type type ) : ConnectorAttributeInfoBuilder
type System.Type type for an 's value.
return ConnectorAttributeInfoBuilder
        public ConnectorAttributeInfoBuilder SetValueType(Type type)
        {
            FrameworkUtil.CheckAttributeType(type);
            _type = type;
            return this;
        }