User Tools

Site Tools


api:thinkgeo.cloud.projectionclient

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

api:thinkgeo.cloud.projectionclient [2018/12/19 08:03] (current)
tgwikiupdate created
Line 1: Line 1:
 +====== ThinkGeo.Cloud.ProjectionClient ======
 +
 +
 +===== Inheritance Hierarchy =====
 +  *System.Object
 +    *ThinkGeo.Cloud.BaseClient
 +      ***ThinkGeo.Cloud.ProjectionClient**
 +===== Members Summary =====
 +==== Public Constructors ====
 +** {{wiki:​PublicMethod.gif|}} ProjectionClient() **
 +
 +  * //Create an instance of the Projection client, you need to apply ClientId and ClientSecret by properties.//​
 +== Remarks ==
 +  * //N/A//
 +== Parameters ==
 +<div newline></​div>​
 +** {{wiki:​PublicMethod.gif|}} ProjectionClient(String,​String) **
 +
 +  * //​Initializes an instance of the Projection client with a GIS Server client ID and Secret.//
 +== Remarks ==
 +  * //N/A//
 +== Parameters ==
 +  * //​clientId//​
 +    * Type:String
 +    * Description:​The ClientId for the auth.
 +
 +  * //​clientSecret//​
 +    * Type:String
 +    * Description:​The ClientSecret for the auth.
 +
 +<div newline></​div>​
 +==== Protected Constructors ====
 +==== Public Methods ====
 +** {{wiki:​PublicMethod.gif|}} Project(Feature,​String,​String) **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:​[[ThinkGeo.MapSuite.Shapes.Feature|Feature]]
 +  * Description:​Projected geometry in Well Known Text format.
 +
 +== Parameters ==
 +  * //feature//
 +    * Type:​[[ThinkGeo.MapSuite.Shapes.Feature|Feature]]
 +    * Description:​The feature that you want to project.
 +
 +  * //​fromProjectionInProj4String//​
 +    * Type:String
 +    * Description:​The Proj4 projection string describing the original spatial reference system in which the geometry is expressed.
 +
 +  * //​toProjectionInProj4String//​
 +    * Type:String
 +    * Description:​The Proj4 projection string describing the target spatial reference system that you want the geometry projected to.
 +
 +<div newline></​div>​
 +** {{wiki:​PublicMethod.gif|}} Project(Feature,​Int32,​Int32) **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:​[[ThinkGeo.MapSuite.Shapes.Feature|Feature]]
 +  * Description:​Projected geometry in Well Known Text format.
 +
 +== Parameters ==
 +  * //feature//
 +    * Type:​[[ThinkGeo.MapSuite.Shapes.Feature|Feature]]
 +    * Description:​The feature that you want to project.
 +
 +  * //​fromProjectionInSrid//​
 +    * Type:Int32
 +    * Description:​The EPSG or ESRI ID (a.k.a. SRID) of the original spatial reference system in which the geometry is expressed.
 +
 +  * //​toProjectionInSrid//​
 +    * Type:Int32
 +    * Description:​The EPSG or ESRI ID (a.k.a. SRID) of the target spatial reference system that you want the geometry reprojected to.
 +
 +<div newline></​div>​
 +** {{wiki:​PublicMethod.gif|}} Project(Feature,​String,​Int32) **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:​[[ThinkGeo.MapSuite.Shapes.Feature|Feature]]
 +  * Description:​Projected geometry in Well Known Text format.
 +
 +== Parameters ==
 +  * //feature//
 +    * Type:​[[ThinkGeo.MapSuite.Shapes.Feature|Feature]]
 +    * Description:​The feature that you want to project.
 +
 +  * //​fromProjectionInProj4String//​
 +    * Type:String
 +    * Description:​The Proj4 projection string describing the original spatial reference system in which the geometry is expressed.
 +
 +  * //​toProjectionInSrid//​
 +    * Type:Int32
 +    * Description:​The EPSG or ESRI ID (a.k.a. SRID) of the target spatial reference system that you want the geometry reprojected to.
 +
 +<div newline></​div>​
 +** {{wiki:​PublicMethod.gif|}} Project(Feature,​Int32,​String) **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:​[[ThinkGeo.MapSuite.Shapes.Feature|Feature]]
 +  * Description:​Projected geometry in Well Known Text format.
 +
 +== Parameters ==
 +  * //feature//
 +    * Type:​[[ThinkGeo.MapSuite.Shapes.Feature|Feature]]
 +    * Description:​The feature that you want to project.
 +
 +  * //​fromProjectionInSrid//​
 +    * Type:Int32
 +    * Description:​The EPSG or ESRI ID (a.k.a. SRID) of the original spatial reference system in which the geometry is expressed.
 +
 +  * //​toProjectionInProj4String//​
 +    * Type:String
 +    * Description:​The Proj4 projection string describing the target spatial reference system that you want the geometry projected to.
 +
 +<div newline></​div>​
 +** {{wiki:​PublicMethod.gif|}} ProjectAsync(Feature,​String,​String) **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:​Task<​[[ThinkGeo.MapSuite.Shapes.Feature|Feature]]>​
 +  * Description:​Projected geometry in Well Known Text format.
 +
 +== Parameters ==
 +  * //feature//
 +    * Type:​[[ThinkGeo.MapSuite.Shapes.Feature|Feature]]
 +    * Description:​The feature that you want to project.
 +
 +  * //​fromProjectionInProj4String//​
 +    * Type:String
 +    * Description:​The Proj4 projection string describing the original spatial reference system in which the geometry is expressed.
 +
 +  * //​toProjectionInProj4String//​
 +    * Type:String
 +    * Description:​The Proj4 projection string describing the target spatial reference system that you want the geometry projected to.
 +
 +<div newline></​div>​
 +** {{wiki:​PublicMethod.gif|}} ProjectAsync(Feature,​Int32,​Int32) **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:​Task<​[[ThinkGeo.MapSuite.Shapes.Feature|Feature]]>​
 +  * Description:​Projected geometry in Well Known Text format.
 +
 +== Parameters ==
 +  * //feature//
 +    * Type:​[[ThinkGeo.MapSuite.Shapes.Feature|Feature]]
 +    * Description:​The feature that you want to project.
 +
 +  * //​fromProjectionInSrid//​
 +    * Type:Int32
 +    * Description:​The EPSG or ESRI ID (a.k.a. SRID) of the original spatial reference system in which the geometry is expressed.
 +
 +  * //​toProjectionInSrid//​
 +    * Type:Int32
 +    * Description:​The EPSG or ESRI ID (a.k.a. SRID) of the target spatial reference system that you want the geometry reprojected to.
 +
 +<div newline></​div>​
 +** {{wiki:​PublicMethod.gif|}} ProjectAsync(Feature,​String,​Int32) **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:​Task<​[[ThinkGeo.MapSuite.Shapes.Feature|Feature]]>​
 +  * Description:​Projected geometry in Well Known Text format.
 +
 +== Parameters ==
 +  * //feature//
 +    * Type:​[[ThinkGeo.MapSuite.Shapes.Feature|Feature]]
 +    * Description:​The feature that you want to project.
 +
 +  * //​fromProjectionInProj4String//​
 +    * Type:String
 +    * Description:​The Proj4 projection string describing the original spatial reference system in which the geometry is expressed.
 +
 +  * //​toProjectionInSrid//​
 +    * Type:Int32
 +    * Description:​The EPSG or ESRI ID (a.k.a. SRID) of the target spatial reference system that you want the geometry reprojected to.
 +
 +<div newline></​div>​
 +** {{wiki:​PublicMethod.gif|}} ProjectAsync(Feature,​Int32,​String) **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:​Task<​[[ThinkGeo.MapSuite.Shapes.Feature|Feature]]>​
 +  * Description:​Projected geometry in Well Known Text format.
 +
 +== Parameters ==
 +  * //feature//
 +    * Type:​[[ThinkGeo.MapSuite.Shapes.Feature|Feature]]
 +    * Description:​The feature that you want to project.
 +
 +  * //​fromProjectionInSrid//​
 +    * Type:Int32
 +    * Description:​The EPSG or ESRI ID (a.k.a. SRID) of the original spatial reference system in which the geometry is expressed.
 +
 +  * //​toProjectionInProj4String//​
 +    * Type:String
 +    * Description:​The Proj4 projection string describing the target spatial reference system that you want the geometry projected to.
 +
 +<div newline></​div>​
 +** {{wiki:​PublicMethod.gif|}} Dispose() **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:Void
 +  * Description:​N/​A
 +
 +== Parameters ==
 +<div newline></​div>​
 +** {{wiki:​PublicMethod.gif|}} ToString() **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:String
 +  * Description:​N/​A
 +
 +== Parameters ==
 +<div newline></​div>​
 +** {{wiki:​PublicMethod.gif|}} Equals(Object) **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:​Boolean
 +  * Description:​N/​A
 +
 +== Parameters ==
 +  * //obj//
 +    * Type:Object
 +    * Description:​N/​A
 +
 +<div newline></​div>​
 +** {{wiki:​PublicMethod.gif|}} GetHashCode() **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:Int32
 +  * Description:​N/​A
 +
 +== Parameters ==
 +<div newline></​div>​
 +** {{wiki:​PublicMethod.gif|}} GetType() **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:Type
 +  * Description:​N/​A
 +
 +== Parameters ==
 +<div newline></​div>​
 +===== Protected Methods =====
 +** {{wiki:​ProtectedMethod.gif|}} AuthenticateWebRequest(WebRequest) **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:Void
 +  * Description:​N/​A
 +
 +== Parameters ==
 +  * //​webRequest//​
 +    * Type:​WebRequest
 +    * Description:​N/​A
 +
 +<div newline></​div>​
 +** {{wiki:​ProtectedMethod.gif|}} GetToken() **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:String
 +  * Description:​N/​A
 +
 +== Parameters ==
 +<div newline></​div>​
 +** {{wiki:​ProtectedMethod.gif|}} GetTokenCore() **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:String
 +  * Description:​N/​A
 +
 +== Parameters ==
 +<div newline></​div>​
 +** {{wiki:​ProtectedMethod.gif|}} SendWebRequest(WebRequest) **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:​WebResponse
 +  * Description:​N/​A
 +
 +== Parameters ==
 +  * //​webRequest//​
 +    * Type:​WebRequest
 +    * Description:​N/​A
 +
 +<div newline></​div>​
 +** {{wiki:​ProtectedMethod.gif|}} SendWebRequestAsync(WebRequest) **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:​Task<​WebResponse>​
 +  * Description:​N/​A
 +
 +== Parameters ==
 +  * //​webRequest//​
 +    * Type:​WebRequest
 +    * Description:​N/​A
 +
 +<div newline></​div>​
 +** {{wiki:​ProtectedMethod.gif|}} GetNextCandidateBaseUri() **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:String
 +  * Description:​N/​A
 +
 +== Parameters ==
 +<div newline></​div>​
 +** {{wiki:​ProtectedMethod.gif|}} GetNextCandidateBaseUriCore() **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:String
 +  * Description:​N/​A
 +
 +== Parameters ==
 +<div newline></​div>​
 +** {{wiki:​ProtectedMethod.gif|}} OnGettingAccessToken(GettingAccessTokenEventArgs) **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:Void
 +  * Description:​N/​A
 +
 +== Parameters ==
 +  * //e//
 +    * Type:​[[ThinkGeo.Cloud.GettingAccessTokenEventArgs|GettingAccessTokenEventArgs]]
 +    * Description:​N/​A
 +
 +<div newline></​div>​
 +** {{wiki:​ProtectedMethod.gif|}} OnSendingWebRequest(SendingWebRequestEventArgs) **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:Void
 +  * Description:​N/​A
 +
 +== Parameters ==
 +  * //e//
 +    * Type:​[[ThinkGeo.MapSuite.Layers.SendingWebRequestEventArgs|SendingWebRequestEventArgs]]
 +    * Description:​N/​A
 +
 +<div newline></​div>​
 +** {{wiki:​ProtectedMethod.gif|}} Finalize() **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:Void
 +  * Description:​N/​A
 +
 +== Parameters ==
 +<div newline></​div>​
 +** {{wiki:​ProtectedMethod.gif|}} MemberwiseClone() **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +
 +== Return Value ==
 +  * Type:Object
 +  * Description:​N/​A
 +
 +== Parameters ==
 +<div newline></​div>​
 +==== Public Properties ====
 +** {{wiki:​PublicProperty.gif|}} ClientId **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +== Return Value ==
 +  * Type:String
 +
 +** {{wiki:​PublicProperty.gif|}} ClientSecret **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +== Return Value ==
 +  * Type:String
 +
 +** {{wiki:​PublicProperty.gif|}} BaseUris **
 +
 +  * //N/A//
 +== Remarks ==
 +  * //N/A//
 +== Return Value ==
 +  * Type:​Collection<​Uri>​
 +
 +==== Protected Properties ====
 +==== Public Events ====
  
api/thinkgeo.cloud.projectionclient.txt ยท Last modified: 2018/12/19 08:03 by tgwikiupdate