Initializes a new instance of the
Request class.
Namespace:
Autoaddress.Autoaddress2_0.Model.GetEcadData
Assembly:
Autoaddress2.0SDK (in Autoaddress2.0SDK.dll) Version: 1.0.18
Syntaxpublic Request(
int ecadId,
bool history,
string txn = null,
string administrativeInfo = null
)
Public Sub New (
ecadId As Integer,
history As Boolean,
Optional txn As String = Nothing,
Optional administrativeInfo As String = Nothing
)
public:
Request(
int ecadId,
bool history,
String^ txn = nullptr,
String^ administrativeInfo = nullptr
)
new :
ecadId : int *
history : bool *
?txn : string *
?administrativeInfo : string
(* Defaults:
let _txn = defaultArg txn null
let _administrativeInfo = defaultArg administrativeInfo null
*)
-> Request
Parameters
- ecadId
- Type: SystemInt32
The ECAD id to get the ECAD data for. - history
- Type: SystemBoolean
Whether or not to return history. - txn (Optional)
- Type: SystemString
Transaction. If null then automatically assigned a value in associated response. - administrativeInfo (Optional)
- Type: SystemString
Release of AdministrativeInfo to return. For example "2015" or "2017".
See Also