Description
Computes the data given a single Time. SingleTime uses DateFormat Dimension.
Syntax
Parameters
Return Type
IAgDrResult.
Remarks
See Also
Example
Execute a time dependent data provider and returning all elements for a single time
[C#] |
---|
IAgDataPrvTimeVar dp = satellite.DataProviders["Precision Passes"] as IAgDataPrvTimeVar;
IAgDrResult resInfo = dp.ExecSingle("1 Jan 2012 12:00:00.000");
|
|
Execute a time dependent data provider and returning all elements for a single time
[Visual Basic .NET] |
---|
Dim dp As IAgDataPrvTimeVar = TryCast(satellite.DataProviders("Precision Passes"), IAgDataPrvTimeVar)
Dim resInfo As IAgDrResult = dp.ExecSingle("1 Jan 2012 12:00:00.000")
|
|