Initializes a new instance of the
Request class.
Namespace:
Autoaddress.Autoaddress2_0.Model.VerifyAddress
Assembly:
Autoaddress2.0SDK (in Autoaddress2.0SDK.dll) Version: 1.0.18
Syntaxpublic Request(
string postcode,
string address,
Language language,
Country country,
bool geographicAddress,
bool vanityMode,
string txn = null
)
Public Sub New (
postcode As String,
address As String,
language As Language,
country As Country,
geographicAddress As Boolean,
vanityMode As Boolean,
Optional txn As String = Nothing
)
public:
Request(
String^ postcode,
String^ address,
Language language,
Country country,
bool geographicAddress,
bool vanityMode,
String^ txn = nullptr
)
new :
postcode : string *
address : string *
language : Language *
country : Country *
geographicAddress : bool *
vanityMode : bool *
?txn : string
(* Defaults:
let _txn = defaultArg txn null
*)
-> Request
Parameters
- postcode
- Type: SystemString
Postcode to find. - address
- Type: SystemString
An address separated by commas to compare. - language
- Type: Autoaddress.Autoaddress2_0.ModelLanguage
Language to verify address. - country
- Type: Autoaddress.Autoaddress2_0.ModelCountry
Country to verify address. - geographicAddress
- Type: SystemBoolean
Return geographic address. - vanityMode
- Type: SystemBoolean
Return vanity address format, if it exists. - txn (Optional)
- Type: SystemString
Transaction. If null then automatically assigned a value in associated response.
Exceptions
See Also