Initializes a new instance of the
Request class.
Namespace:
Autoaddress.Autoaddress2_0.Model.FindAddress
Assembly:
Autoaddress2.0SDK (in Autoaddress2.0SDK.dll) Version: 1.0.18
Syntaxpublic Request(
string address,
Language language,
Country country,
int limit,
bool geographicAddress,
bool vanityMode,
bool addressElements,
string addressProfileName,
Nullable<int> addressId = null,
string txn = null
)
Public Sub New (
address As String,
language As Language,
country As Country,
limit As Integer,
geographicAddress As Boolean,
vanityMode As Boolean,
addressElements As Boolean,
addressProfileName As String,
Optional addressId As Nullable(Of Integer) = Nothing,
Optional txn As String = Nothing
)
public:
Request(
String^ address,
Language language,
Country country,
int limit,
bool geographicAddress,
bool vanityMode,
bool addressElements,
String^ addressProfileName,
Nullable<int> addressId = nullptr,
String^ txn = nullptr
)
new :
address : string *
language : Language *
country : Country *
limit : int *
geographicAddress : bool *
vanityMode : bool *
addressElements : bool *
addressProfileName : string *
?addressId : Nullable<int> *
?txn : string
(* Defaults:
let _addressId = defaultArg addressId null
let _txn = defaultArg txn null
*)
-> Request
Parameters
- address
- Type: SystemString
Address or postcode to find. - language
- Type: Autoaddress.Autoaddress2_0.ModelLanguage
Language for returned address. - country
- Type: Autoaddress.Autoaddress2_0.ModelCountry
Country the address should be searched in. - limit
- Type: SystemInt32
An upper limit on the number of options that may be returned. - geographicAddress
- Type: SystemBoolean
Return geographic address. - vanityMode
- Type: SystemBoolean
Return vanity address format, if it exists. - addressElements
- Type: SystemBoolean
Return address elements. - addressProfileName
- Type: SystemString
If supplied, a reformatted address (according to profile rules) is returned in the ReformattedAddress field. - addressId (Optional)
- Type: SystemNullableInt32
ID of the address to find (i.e. ECAD ID for Ireland). - txn (Optional)
- Type: SystemString
Transaction. If null then automatically assigned a value in associated response.
See Also