Constructor.
Namespace:
MaxMind.MinFraud.Request
Assembly:
MaxMind.MinFraud (in MaxMind.MinFraud.dll) Version: 2.0.0
Syntaxpublic Email(
string address = null,
string domain = null,
bool hashAddress = false
)
Public Sub New (
Optional address As String = Nothing,
Optional domain As String = Nothing,
Optional hashAddress As Boolean = false
)
public:
Email(
String^ address = nullptr,
String^ domain = nullptr,
bool hashAddress = false
)
new :
?address : string *
?domain : string *
?hashAddress : bool
(* Defaults:
let _address = defaultArg address null
let _domain = defaultArg domain null
let _hashAddress = defaultArg hashAddress false
*)
-> Email
Parameters
- address (Optional)
- Type: SystemString
The user's email address. This will be
converted into an MD5 before being sent to the web service.
- domain (Optional)
- Type: SystemString
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: SystemBoolean
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