Click or drag to resize

Email Constructor

Constructor.

Namespace:  MaxMind.MinFraud.Request
Assembly:  MaxMind.MinFraud (in MaxMind.MinFraud.dll) Version: 2.0.0
Syntax
public Email(
	string address = null,
	string domain = null,
	bool hashAddress = false
)

Parameters

address (Optional)
Type: System.String
The user's email address. This will be converted into an MD5 before being sent to the web service.
domain (Optional)
Type: System.String
The domain of the email address used in the transaction. If address is passed to the constructor and domain is not, the domain will be automatically set from the address.
hashAddress (Optional)
Type: System.Boolean
By default, the address will be sent in plain text. If hashAddress is set to true, the address will instead be sent as an MD5 hash.
See Also