Initializes a new instance of the
Request class.
Namespace:
Autoaddress.Autoaddress2_0.Model.MapId
Assembly:
Autoaddress2.0SDK (in Autoaddress2.0SDK.dll) Version: 1.0.18
Syntaxpublic Request(
Nullable<int> ecadId = null,
string geoDirectoryId = null,
string geoDirectoryVersion = null,
string txn = null
)
Public Sub New (
Optional ecadId As Nullable(Of Integer) = Nothing,
Optional geoDirectoryId As String = Nothing,
Optional geoDirectoryVersion As String = Nothing,
Optional txn As String = Nothing
)
public:
Request(
Nullable<int> ecadId = nullptr,
String^ geoDirectoryId = nullptr,
String^ geoDirectoryVersion = nullptr,
String^ txn = nullptr
)
new :
?ecadId : Nullable<int> *
?geoDirectoryId : string *
?geoDirectoryVersion : string *
?txn : string
(* Defaults:
let _ecadId = defaultArg ecadId null
let _geoDirectoryId = defaultArg geoDirectoryId null
let _geoDirectoryVersion = defaultArg geoDirectoryVersion null
let _txn = defaultArg txn null
*)
-> Request
Parameters
- ecadId (Optional)
- Type: SystemNullableInt32
The ECAD ID to get the GeoDirectory ID for. - geoDirectoryId (Optional)
- Type: SystemString
The GeoDirectory ID to get the ECAD ID for. - geoDirectoryVersion (Optional)
- Type: SystemString
The GeoDirectory version. - txn (Optional)
- Type: SystemString
Transaction. If null then automatically assigned a value in associated response.
See Also