User Tools

Site Tools


api:thinkgeo.cloud.elevationclient

ThinkGeo.Cloud.ElevationClient

Inheritance Hierarchy

  • System.Object
    • ThinkGeo.Cloud.BaseClient
      • ThinkGeo.Cloud.ElevationClient

Members Summary

Public Constructors

ElevationClient()

  • Initilizes an instance. You need apply client Id and secret by properties.
Remarks
  • N/A
Parameters

ElevationClient(String,String)

  • Initializes an instance with ClientID and ClientSecret. It will send a request to GIS Server to gain the token which will be added to the Header for all the requests.
Remarks
  • N/A
Parameters
  • clientId
    • Type:String
    • Description:The ClientId for the auth.
  • clientSecret
    • Type:String
    • Description:The ClientSecret for the auth.

Protected Constructors

Public Methods

GetElevationOfPointInDecimalDegree(Double,Double,DistanceUnit)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Double
  • Description:Returns the elevation for the point
Parameters
  • latitude
    • Type:Double
    • Description:The latitude of the point.
  • longitude
    • Type:Double
    • Description:The longitude of the point.
  • elevationUnit
    • Description:The unit of measure in which the elevation result is expressed. Defaults to “Feet”.

GetElevationOfPoint(Double,Double,Int32,DistanceUnit)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Double
  • Description:Returns the elevation for the point
Parameters
  • x
    • Type:Double
    • Description:The X coordinate of the point.
  • y
    • Type:Double
    • Description:The Y coordinate of the point.
  • pointProjectionInSrid
    • Type:Int32
    • Description:The SRID of the point
  • elevationUnit
    • Description:The unit of measure in which the elevation result is expressed. Defaults to “Feet”.

GetElevationOfPoint(Double,Double,String,DistanceUnit)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Double
  • Description:Returns the elevation for the point
Parameters
  • x
    • Type:Double
    • Description:The X coordinate of the point.
  • y
    • Type:Double
    • Description:The Y coordinate of the point.
  • pointProjectionInProj4String
    • Type:String
    • Description:The proj4string of the point.
  • elevationUnit
    • Description:The unit of measure in which the elevation result is expressed. Defaults to “Feet”.

GetElevationOfPointInDecimalDegreeAsync(Double,Double,DistanceUnit)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Task<Double>
  • Description:Returns the elevation for the point
Parameters
  • latitude
    • Type:Double
    • Description:The latitude of the point.
  • longitude
    • Type:Double
    • Description:The longitude of the point.
  • elevationUnit
    • Description:The unit of measure in which the elevation result is expressed. Defaults to “Feet”.

GetElevationOfPointAsync(Double,Double,Int32,DistanceUnit)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Task<Double>
  • Description:Returns the elevation for the point
Parameters
  • x
    • Type:Double
    • Description:The X coordinate of the point.
  • y
    • Type:Double
    • Description:The Y coordinate of the point.
  • pointProjectionInSrid
    • Type:Int32
    • Description:The SRID of the point.
  • elevationUnit
    • Description:The unit of measure in which the elevation result is expressed. Defaults to “Feet”.

GetElevationOfPointAsync(Double,Double,String,DistanceUnit)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Task<Double>
  • Description:Returns the elevation for the point
Parameters
  • x
    • Type:Double
    • Description:The Y coordinate of the point.
  • y
    • Type:Double
    • Description:The X coordinate of the point.
  • pointProjectionInProj4String
    • Type:String
    • Description:The proj4string of the point.
  • elevationUnit
    • Description:The unit of measure in which the elevation result is expressed. Defaults to “Feet”.

GetElevationOfLineInDecimalDegree(LineBaseShape,Int32,DistanceUnit)

  • N/A
Remarks
  • N/A
Return Value
  • Description:A ElevationResult with collection of the elevation data.
Parameters
  • line
  • numberOfSegments
    • Type:Int32
    • Description:Splits the requested line into this many segments, then calculates elevation of each point joining the segments.
  • elevationUnit
    • Description:The unit of measure in which the elevation result is expressed. Defaults to “Feet”.

GetElevationOfLine(LineBaseShape,Int32,Int32,DistanceUnit)

  • N/A
Remarks
  • N/A
Return Value
  • Description:A ElevationResult with collection of the elevation data.
Parameters
  • line
  • lineProjectionInSrid
    • Type:Int32
    • Description:The SRID (coordinate system) of the input line.
  • numberOfSegments
    • Type:Int32
    • Description:Splits the requested line into this many segments, then calculates elevation of each point joining the segments.
  • elevationUnit
    • Description:The unit of measure in which the elevation result is expressed. Defaults to “Feet”.

GetElevationOfLine(LineBaseShape,String,Int32,DistanceUnit)

  • N/A
Remarks
  • N/A
Return Value
  • Description:A ElevationResult with collection of the elevation data.
Parameters
  • line
  • lineProjectionInProj4String
    • Type:String
    • Description:The proj4string (coordinate system) of the input line.
  • numberOfSegments
    • Type:Int32
    • Description:Splits the requested line into this many segments, then calculates elevation of each point joining the segments.
  • elevationUnit
    • Description:The unit of measure in which the elevation result is expressed. Defaults to “Feet”.

GetElevationOfLineInDecimalDegree(LineBaseShape,Double,DistanceUnit,DistanceUnit)

  • N/A
Remarks
  • N/A
Return Value
  • Description:A ElevationResult with collection of the elevation data.
Parameters
  • line
  • intervalDistance
    • Type:Double
    • Description:Splits the requested line into intervals of this length. The unit of measure for this distance is specified by the IntervalDistanceUnit parameter.
  • intervalDistanceUnit
    • Description:The unit of measure in which the IntervalDistance is expressed.
  • elevationUnit
    • Description:The unit of measure in which the elevation result is expressed. Defaults to “Feet”.

GetElevationOfLine(LineBaseShape,Int32,Double,DistanceUnit,DistanceUnit)

  • N/A
Remarks
  • N/A
Return Value
  • Description:A ElevationResult with collection of the elevation data.
Parameters
  • line
  • lineProjectionInSrid
    • Type:Int32
    • Description:The SRID (coordinate system) of the input line.
  • intervalDistance
    • Type:Double
    • Description:Splits the requested line into intervals of this length. The unit of measure for this distance is specified by the IntervalDistanceUnit parameter.
  • intervalDistanceUnit
    • Description:The unit of measure in which the IntervalDistance is expressed.
  • elevationUnit
    • Description:The unit of measure in which the elevation result is expressed. Defaults to “Feet”.

GetElevationOfLine(LineBaseShape,String,Double,DistanceUnit,DistanceUnit)

  • N/A
Remarks
  • N/A
Return Value
  • Description:A ElevationResult with collection of the elevation data.
Parameters
  • line
  • lineProjectionInProj4String
    • Type:String
    • Description:The proj4string (coordinate system) of the input line.
  • intervalDistance
    • Type:Double
    • Description:Splits the requested line into intervals of this length. The unit of measure for this distance is specified by the IntervalDistanceUnit parameter.
  • intervalDistanceUnit
    • Description:The unit of measure in which the IntervalDistance is expressed.
  • elevationUnit
    • Description:The unit of measure in which the elevation result is expressed. Defaults to “Feet”.

GetElevationOfLineInDecimalDegreeAsync(LineBaseShape,Int32,DistanceUnit)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Task<ElevationResult>
  • Description:A ElevationResult with collection of the elevation data.
Parameters
  • line
  • numberOfSegments
    • Type:Int32
    • Description:Splits the requested line into this many segments, then calculates elevation of each point joining the segments.
  • elevationUnit
    • Description:The unit of measure in which the elevation result is expressed. Defaults to “Feet”.

GetElevationOfLineAsync(LineBaseShape,Int32,Int32,DistanceUnit)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Task<ElevationResult>
  • Description:A ElevationResult with collection of the elevation data.
Parameters
  • line
  • lineProjectionInSrid
    • Type:Int32
    • Description:The SRID (coordinate system) of the input line.
  • numberOfSegments
    • Type:Int32
    • Description:Splits the requested line into this many segments, then calculates elevation of each point joining the segments.
  • elevationUnit
    • Description:The unit of measure in which the elevation result is expressed. Defaults to “Feet”.

GetElevationOfLineAsync(LineBaseShape,String,Int32,DistanceUnit)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Task<ElevationResult>
  • Description:A ElevationResult with collection of the elevation data.
Parameters
  • line
  • lineProjectionInProj4String
    • Type:String
    • Description:The proj4string (coordinate system) of the input line.
  • numberOfSegments
    • Type:Int32
    • Description:Splits the requested line into this many segments, then calculates elevation of each point joining the segments.
  • elevationUnit
    • Description:The unit of measure in which the elevation result is expressed. Defaults to “Feet”.

GetElevationOfLineInDecimalDegreeAsync(LineBaseShape,Double,DistanceUnit,DistanceUnit)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Task<ElevationResult>
  • Description:A ElevationResult with collection of the elevation data.
Parameters
  • line
  • intervalDistance
    • Type:Double
    • Description:Splits the requested line into intervals of this length. The unit of measure for this distance is specified by the IntervalDistanceUnit parameter.
  • intervalDistanceUnit
    • Description:The unit of measure in which the IntervalDistance is expressed.
  • elevationUnit
    • Description:The unit of measure in which the elevation result is expressed. Defaults to “Feet”.

GetElevationOfLineAsync(LineBaseShape,Int32,Double,DistanceUnit,DistanceUnit)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Task<ElevationResult>
  • Description:A ElevationResult with collection of the elevation data.
Parameters
  • line
  • lineProjectionInSrid
    • Type:Int32
    • Description:The SRID (coordinate system) of the input line.
  • intervalDistance
    • Type:Double
    • Description:Splits the requested line into intervals of this length. The unit of measure for this distance is specified by the IntervalDistanceUnit parameter.
  • intervalDistanceUnit
    • Description:The unit of measure in which the IntervalDistance is expressed.
  • elevationUnit
    • Description:The unit of measure in which the elevation result is expressed. Defaults to “Feet”.

GetElevationOfLineAsync(LineBaseShape,String,Double,DistanceUnit,DistanceUnit)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Task<ElevationResult>
  • Description:A ElevationResult with collection of the elevation data.
Parameters
  • line
  • lineProjectionInProj4String
    • Type:String
    • Description:The proj4string (coordinate system) of the input line.
  • intervalDistance
    • Type:Double
    • Description:Splits the requested line into intervals of this length. The unit of measure for this distance is specified by the IntervalDistanceUnit parameter.
  • intervalDistanceUnit
    • Description:The unit of measure in which the IntervalDistance is expressed.
  • elevationUnit
    • Description:The unit of measure in which the elevation result is expressed. Defaults to “Feet”.

GetGradeOfLineInDecimalDegree(LineShape,Int32,DistanceUnit)

  • N/A
Remarks
  • N/A
Return Value
  • Description:A collection of the elevation grade data.
Parameters
  • line
    • Type:LineShape
    • Description:The line that nedd to get the grade.
  • numberOfSegments
    • Type:Int32
    • Description:Splits the requested line into this many segments, then calculates elevation of each point joining the segments.
  • elevationUnit
    • Description:The unit of measure in which the elevation result is expressed. Defaults to “Feet”.

GetGradeOfLine(LineShape,Int32,Int32,DistanceUnit)

  • N/A
Remarks
  • N/A
Return Value
  • Description:A collection of the elevation grade data.
Parameters
  • line
    • Type:LineShape
    • Description:The line that nedd to get the grade.
  • lineProjectionInSrid
    • Type:Int32
    • Description:The SRID (coordinate system) of the input line.
  • numberOfSegments
    • Type:Int32
    • Description:Splits the requested line into this many segments, then calculates elevation of each point joining the segments.
  • elevationUnit
    • Description:The unit of measure in which the elevation result is expressed. Defaults to “Feet”.

GetGradeOfLine(LineShape,String,Int32,DistanceUnit)

  • N/A
Remarks
  • N/A
Return Value
  • Description:A collection of the elevation grade data.
Parameters
  • line
    • Type:LineShape
    • Description:The line that nedd to get the grade.
  • lineProjectionInProj4String
    • Type:String
    • Description:The proj4string (coordinate system) of the input line.
  • numberOfSegments
    • Type:Int32
    • Description:Splits the requested line into this many segments, then calculates elevation of each point joining the segments.
  • elevationUnit
    • Description:The unit of measure in which the elevation result is expressed. Defaults to “Feet”.

GetGradeOfLineInDecimalDegree(LineShape,Double,DistanceUnit,DistanceUnit)

  • N/A
Remarks
  • N/A
Return Value
  • Description:A collection of the elevation grade data.
Parameters
  • line
    • Type:LineShape
    • Description:The line that nedd to get the grade.
  • intervalDistance
    • Type:Double
    • Description:Splits the requested line into intervals of this length. The unit of measure for this distance is specified by the IntervalDistanceUnit parameter.
  • intervalDistanceUnit
    • Description:The unit of measure in which the IntervalDistance is expressed.
  • elevationUnit
    • Description:The unit of measure in which the elevation result is expressed. Defaults to “Feet”.

GetGradeOfLine(LineShape,Int32,Double,DistanceUnit,DistanceUnit)

  • N/A
Remarks
  • N/A
Return Value
  • Description:A collection of the elevation grade data.
Parameters
  • line
    • Type:LineShape
    • Description:The line that nedd to get the grade.
  • lineProjectionInSrid
    • Type:Int32
    • Description:The SRID (coordinate system) of the input line.
  • intervalDistance
    • Type:Double
    • Description:Splits the requested line into intervals of this length. The unit of measure for this distance is specified by the IntervalDistanceUnit parameter.
  • intervalDistanceUnit
    • Description:The unit of measure in which the IntervalDistance is expressed.
  • elevationUnit
    • Description:The unit of measure in which the elevation result is expressed. Defaults to “Feet”.

GetGradeOfLine(LineShape,String,Double,DistanceUnit,DistanceUnit)

  • N/A
Remarks
  • N/A
Return Value
  • Description:A collection of the elevation grade data.
Parameters
  • line
    • Type:LineShape
    • Description:The line that nedd to get the grade.
  • lineProjectionInProj4String
    • Type:String
    • Description:The proj4string (coordinate system) of the input line.
  • intervalDistance
    • Type:Double
    • Description:Splits the requested line into intervals of this length. The unit of measure for this distance is specified by the IntervalDistanceUnit parameter.
  • intervalDistanceUnit
    • Description:The unit of measure in which the IntervalDistance is expressed.
  • elevationUnit
    • Description:The unit of measure in which the elevation result is expressed. Defaults to “Feet”.

GetGradeOfLineInDecimalDegreeAsync(LineShape,Int32,DistanceUnit)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Task<GradeResult>
  • Description:A collection of the elevation grade data.
Parameters
  • line
    • Type:LineShape
    • Description:The line that nedd to get the grade.
  • numberOfSegments
    • Type:Int32
    • Description:Splits the requested line into this many segments, then calculates elevation of each point joining the segments.
  • elevationUnit
    • Description:The unit of measure in which the elevation result is expressed. Defaults to “Feet”.

GetGradeOfLineAsync(LineShape,Int32,Double,DistanceUnit,DistanceUnit)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Task<GradeResult>
  • Description:A collection of the elevation grade data.
Parameters
  • line
    • Type:LineShape
    • Description:The line that nedd to get the grade.
  • lineProjectionInSrid
    • Type:Int32
    • Description:The SRID (coordinate system) of the input line.
  • intervalDistance
    • Type:Double
    • Description:Splits the requested line into intervals of this length. The unit of measure for this distance is specified by the IntervalDistanceUnit parameter.
  • intervalDistanceUnit
    • Description:The unit of measure in which the IntervalDistance is expressed.
  • elevationUnit
    • Description:The unit of measure in which the elevation result is expressed. Defaults to “Feet”.

GetGradeOfLineAsync(LineShape,String,Double,DistanceUnit,DistanceUnit)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Task<GradeResult>
  • Description:A collection of the elevation grade data.
Parameters
  • line
    • Type:LineShape
    • Description:The line that nedd to get the grade.
  • lineProjectionInProj4String
    • Type:String
    • Description:The proj4string (coordinate system) of the input line.
  • intervalDistance
    • Type:Double
    • Description:Splits the requested line into intervals of this length. The unit of measure for this distance is specified by the IntervalDistanceUnit parameter.
  • intervalDistanceUnit
    • Description:The unit of measure in which the IntervalDistance is expressed.
  • elevationUnit
    • Description:The unit of measure in which the elevation result is expressed. Defaults to “Feet”.

GetGradeOfLineInDecimalDegreeAsync(LineShape,Double,DistanceUnit,DistanceUnit)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Task<GradeResult>
  • Description:A collection of the elevation grade data.
Parameters
  • line
    • Type:LineShape
    • Description:The line that nedd to get the grade.
  • intervalDistance
    • Type:Double
    • Description:Splits the requested line into intervals of this length. The unit of measure for this distance is specified by the IntervalDistanceUnit parameter.
  • intervalDistanceUnit
    • Description:The unit of measure in which the IntervalDistance is expressed.
  • elevationUnit
    • Description:The unit of measure in which the elevation result is expressed. Defaults to “Feet”.

GetGradeOfLineAsync(LineShape,Int32,Int32,DistanceUnit)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Task<GradeResult>
  • Description:A collection of the elevation grade data.
Parameters
  • line
    • Type:LineShape
    • Description:The line that nedd to get the grade.
  • lineProjectionInSrid
    • Type:Int32
    • Description:The SRID (coordinate system) of the input line.
  • numberOfSegments
    • Type:Int32
    • Description:Splits the requested line into this many segments, then calculates elevation of each point joining the segments.
  • elevationUnit
    • Description:The unit of measure in which the elevation result is expressed. Defaults to “Feet”.

GetGradeOfLineAsync(LineShape,String,Int32,DistanceUnit)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Task<GradeResult>
  • Description:A collection of the elevation grade data.
Parameters
  • line
    • Type:LineShape
    • Description:The line that nedd to get the grade.
  • lineProjectionInProj4String
    • Type:String
    • Description:The proj4string (coordinate system) of the input line.
  • numberOfSegments
    • Type:Int32
    • Description:Splits the requested line into this many segments, then calculates elevation of each point joining the segments.
  • elevationUnit
    • Description:The unit of measure in which the elevation result is expressed. Defaults to “Feet”.

GetElevationOfAreaInDecimalDegree(AreaBaseShape,Double,DistanceUnit,DistanceUnit)

  • N/A
Remarks
  • N/A
Return Value
  • Description:A ElevationResult with collection of the elevation data.
Parameters
  • area
    • Description:The area of a polygon shape to get the elevation.
  • intervalDistance
    • Type:Double
    • Description:The distance between every two points in the area matrix. Elevation of each point will be calculated and returned. The unit of measure for this distance is specified by the IntervalDistanceUnit parameter.
  • intervalDistanceUnit
    • Description:The unit of measure in which the IntervalDistance is expressed.
  • elevationUnit
    • Description:The unit of measure in which the elevation result is expressed. Defaults to “Feet”.

GetElevationOfArea(AreaBaseShape,Int32,Double,DistanceUnit,DistanceUnit)

  • N/A
Remarks
  • N/A
Return Value
  • Description:A ElevationResult with collection of the elevation data.
Parameters
  • area
    • Description:The area of a polygon shape to get the elevation.
  • areaProjectionInSrid
    • Type:Int32
    • Description:The SRID (coordinate system) of the input line.
  • intervalDistance
    • Type:Double
    • Description:The distance between every two points in the area matrix. Elevation of each point will be calculated and returned. The unit of measure for this distance is specified by the IntervalDistanceUnit parameter.
  • intervalDistanceUnit
    • Description:The unit of measure in which the IntervalDistance is expressed.
  • elevationUnit
    • Description:The unit of measure in which the elevation result is expressed. Defaults to “Feet”.

GetElevationOfArea(AreaBaseShape,String,Double,DistanceUnit,DistanceUnit)

  • N/A
Remarks
  • N/A
Return Value
  • Description:A ElevationResult with collection of the elevation data.
Parameters
  • area
    • Description:The area of a polygon shape to get the elevation.
  • areaProjectionInProj4String
    • Type:String
    • Description:The proj4string (coordinate system) of the input line.
  • intervalDistance
    • Type:Double
    • Description:The distance between every two points in the area matrix. Elevation of each point will be calculated and returned. The unit of measure for this distance is specified by the IntervalDistanceUnit parameter.
  • intervalDistanceUnit
    • Description:The unit of measure in which the IntervalDistance is expressed.
  • elevationUnit
    • Description:The unit of measure in which the elevation result is expressed. Defaults to “Feet”.

GetElevationOfAreaInDecimalDegreeAsync(AreaBaseShape,Double,DistanceUnit,DistanceUnit)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Task<ElevationResult>
  • Description:A ElevationResult with collection of the elevation data.
Parameters
  • area
    • Description:The area of a polygon shape to get the elevation.
  • intervalDistance
    • Type:Double
    • Description:The distance between every two points in the area matrix. Elevation of each point will be calculated and returned. The unit of measure for this distance is specified by the IntervalDistanceUnit parameter.
  • intervalDistanceUnit
    • Description:The unit of measure in which the IntervalDistance is expressed.
  • elevationUnit
    • Description:The unit of measure in which the elevation result is expressed. Defaults to “Feet”.

GetElevationOfAreaAsync(AreaBaseShape,Int32,Double,DistanceUnit,DistanceUnit)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Task<ElevationResult>
  • Description:A ElevationResult with collection of the elevation data.
Parameters
  • area
    • Description:The area of a polygon shape to get the elevation.
  • areaProjectionInSrid
    • Type:Int32
    • Description:The SRID (coordinate system) of the input line.
  • intervalDistance
    • Type:Double
    • Description:The distance between every two points in the area matrix. Elevation of each point will be calculated and returned. The unit of measure for this distance is specified by the IntervalDistanceUnit parameter.
  • intervalDistanceUnit
    • Description:The unit of measure in which the IntervalDistance is expressed.
  • elevationUnit
    • Description:The unit of measure in which the elevation result is expressed. Defaults to “Feet”.

GetElevationOfAreaAsync(AreaBaseShape,String,Double,DistanceUnit,DistanceUnit)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Task<ElevationResult>
  • Description:A ElevationResult with collection of the elevation data.
Parameters
  • area
    • Description:The area of a polygon shape to get the elevation.
  • areaProjectionInProj4String
    • Type:String
    • Description:The proj4string (coordinate system) of the input line.
  • intervalDistance
    • Type:Double
    • Description:The distance between every two points in the area matrix. Elevation of each point will be calculated and returned. The unit of measure for this distance is specified by the IntervalDistanceUnit parameter.
  • intervalDistanceUnit
    • Description:The unit of measure in which the IntervalDistance is expressed.
  • elevationUnit
    • Description:The unit of measure in which the elevation result is expressed. Defaults to “Feet”.

Dispose()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters

ToString()

  • N/A
Remarks
  • N/A
Return Value
  • Type:String
  • Description:N/A
Parameters

Equals(Object)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Boolean
  • Description:N/A
Parameters
  • obj
    • Type:Object
    • Description:N/A

GetHashCode()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Int32
  • Description:N/A
Parameters

GetType()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Type
  • Description:N/A
Parameters

Protected Methods

AuthenticateWebRequest(WebRequest)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters
  • webRequest
    • Type:WebRequest
    • Description:N/A

GetToken()

  • N/A
Remarks
  • N/A
Return Value
  • Type:String
  • Description:N/A
Parameters

GetTokenCore()

  • N/A
Remarks
  • N/A
Return Value
  • Type:String
  • Description:N/A
Parameters

SendWebRequest(WebRequest)

  • N/A
Remarks
  • N/A
Return Value
  • Type:WebResponse
  • Description:N/A
Parameters
  • webRequest
    • Type:WebRequest
    • Description:N/A

SendWebRequestAsync(WebRequest)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Task<WebResponse>
  • Description:N/A
Parameters
  • webRequest
    • Type:WebRequest
    • Description:N/A

GetNextCandidateBaseUri()

  • N/A
Remarks
  • N/A
Return Value
  • Type:String
  • Description:N/A
Parameters

GetNextCandidateBaseUriCore()

  • N/A
Remarks
  • N/A
Return Value
  • Type:String
  • Description:N/A
Parameters

OnGettingAccessToken(GettingAccessTokenEventArgs)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters

OnSendingWebRequest(SendingWebRequestEventArgs)

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters

Finalize()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Void
  • Description:N/A
Parameters

MemberwiseClone()

  • N/A
Remarks
  • N/A
Return Value
  • Type:Object
  • Description:N/A
Parameters

Public Properties

ClientId

  • N/A
Remarks
  • N/A
Return Value
  • Type:String

ClientSecret

  • N/A
Remarks
  • N/A
Return Value
  • Type:String

BaseUris

  • N/A
Remarks
  • N/A
Return Value
  • Type:Collection<Uri>

Protected Properties

Public Events

api/thinkgeo.cloud.elevationclient.txt · Last modified: 2018/12/19 08:01 by tgwikiupdate