ExistClientValue

void ExistClientValue(string clientValue)

Checks if an instance corresponding to a given client value exists. If not, an exception will be raised.

Parameters

Name Description
string clientValue The client value.

Example

cEnumeration enumOrderSupplyType = cEnumeration.Get("OrderSupplyType");

// Validate the text in the field dfsSupplyType and raise an exception is it's not valid!
enumOrderSupplyType.ExistClientValue(dfsSupplyType.Text);

Comments

This is equivalent client method to the database domain method <Domain>_API.Exist(client_value_ IN VARCHAR2)