Constructor.
Namespace:
MaxMind.MinFraud.Request
Assembly:
MaxMind.MinFraud (in MaxMind.MinFraud.dll) Version: 0.6.0
Syntaxpublic Email(
string address = null,
string domain = null
)
Public Sub New (
Optional address As String = Nothing,
Optional domain As String = Nothing
)
public:
Email(
String^ address = nullptr,
String^ domain = nullptr
)
new :
?address : string *
?domain : string
(* Defaults:
let _address = defaultArg address null
let _domain = defaultArg domain null
*)
-> 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.
See Also