 | CustomerRepositoryTCustomer, TAddress, TPhone, TFax, TEmail, TWebsite, TAffiliationGetByWebLogin(String) Method |
Retrieves a single customer by their web login.
Namespace: Ignition.CrmAssembly: CatalystFire.Ignition (in CatalystFire.Ignition.dll) Version: 12.0.28229
Syntaxpublic TCustomer GetByWebLogin(
string webLogin
)
Public Function GetByWebLogin (
webLogin As String
) As TCustomer
public:
virtual TCustomer GetByWebLogin(
String^ webLogin
) sealed
abstract GetByWebLogin :
webLogin : string -> 'TCustomer
override GetByWebLogin :
webLogin : string -> 'TCustomer Parameters
- webLogin String
- The web login used for lookup. Must be unique.
Return Value
TCustomerThe requested customer
Exceptions| Exception | Condition |
|---|
| IgnitionEntityNotFoundException | No customer was found with the requested web login. |
| InvalidOperationException | Multiple customers were found with the requested web login. |
See Also