This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
thinkgeo.mapsuite.mvcedition.multithreadtileresource [2015/08/20 03:08] 127.0.0.1 external edit |
thinkgeo.mapsuite.mvcedition.multithreadtileresource [2017/03/16 21:59] (current) |
||
---|---|---|---|
Line 1: | Line 1: | ||
====== ThinkGeo.MapSuite.MvcEdition.MultiThreadTileResource ====== | ====== ThinkGeo.MapSuite.MvcEdition.MultiThreadTileResource ====== | ||
+ | {{section>upgrade_map_suite_to_10.0}} | ||
- | |||
- | <!-- Class --> | ||
This is an asynchronous HTTP handler which is used to handle web map services. | This is an asynchronous HTTP handler which is used to handle web map services. | ||
===== Inheritance Hierarchy ===== | ===== Inheritance Hierarchy ===== | ||
- | *System.Object | + | *System.Object |
- | **[[ThinkGeo.MapSuite.MvcEdition.MultiThreadTileResource]] | + | ***ThinkGeo.MapSuite.MvcEdition.MultiThreadTileResource** |
===== Members Summary ===== | ===== Members Summary ===== | ||
==== Public Constructors ==== | ==== Public Constructors ==== | ||
- | ^ Name ^ Parameters ^ DeclaringType ^ Summary ^ | + | ** {{wiki:PublicMethod.gif|}} MultiThreadTileResource() ** |
- | | {{wiki:PublicMethod.gif|Public Method}}[[#MultiThreadTileResource()|MultiThreadTileResource]] | | | This is the default constructor for the TileResource class. | | + | |
+ | * //This is the default constructor for the TileResource class.// | ||
+ | == Remarks == | ||
+ | * //This is the default constructor for the TileResource class.// | ||
+ | == Parameters == | ||
+ | <div newline></div> | ||
==== Protected Constructors ==== | ==== Protected Constructors ==== | ||
- | ^ Name ^ Parameters ^ DeclaringType ^ Summary ^ | ||
- | |||
==== Public Methods ==== | ==== Public Methods ==== | ||
- | ^ Name ^ Parameters ^ DeclaringType ^ Summary ^ | + | ** {{wiki:PublicMethod.gif|}} ProcessRequest(HttpContext) ** |
- | | {{wiki:PublicMethod.gif|Public Method}}[[#BeginProcessRequest(HttpContext, AsyncCallback, Object)|BeginProcessRequest]] | HttpContext, AsyncCallback, Object | | Initiates an asynchronous call to the HTTP handler. | | + | |
- | | {{wiki:PublicMethod.gif|Public Method}}[[#EndProcessRequest(IAsyncResult)|EndProcessRequest]] | IAsyncResult | | Provides an asynchronous process End method when the process ends. | | + | |
- | | {{wiki:PublicMethod.gif|Public Method}}[[#Equals(Object)|Equals]] | Object | Object | | | + | |
- | | {{wiki:PublicMethod.gif|Public Method}}[[#GetHashCode()|GetHashCode]] | | Object | | | + | |
- | | {{wiki:PublicMethod.gif|Public Method}}[[#GetType()|GetType]] | | Object | | | + | |
- | | {{wiki:PublicMethod.gif|Public Method}}[[#ProcessRequest(HttpContext)|ProcessRequest]] | HttpContext | | Enables processing of HTTP Web requests by a custom HttpHandler. | | + | |
- | | {{wiki:PublicMethod.gif|Public Method}}[[#ToString()|ToString]] | | Object | | | + | |
- | ==== Protected Methods ==== | + | * //Enables processing of HTTP Web requests by a custom HttpHandler.// |
- | ^ Name ^ Parameters ^ DeclaringType ^ Summary ^ | + | == Remarks == |
- | | {{wiki:ProtectedMethod.gif|Protected Method}}[[#BeginProcessRequestCore(HttpContext, AsyncCallback, Object)|BeginProcessRequestCore]] | HttpContext, AsyncCallback, Object | | Initiates an asynchronous call to the HTTP handler. | | + | * //N/A// |
- | | {{wiki:ProtectedMethod.gif|Protected Method}}[[#EndProcessRequestCore(IAsyncResult)|EndProcessRequestCore]] | IAsyncResult | | Provides an asynchronous process End method when the process ends. | | + | |
- | | {{wiki:ProtectedMethod.gif|Protected Method}}[[#Finalize()|Finalize]] | | Object | | | + | |
- | | {{wiki:ProtectedMethod.gif|Protected Method}}[[#MemberwiseClone()|MemberwiseClone]] | | Object | | | + | |
- | | {{wiki:ProtectedMethod.gif|Protected Method}}[[#ProcessRequestCore(HttpContext)|ProcessRequestCore]] | HttpContext | | Enables processing of HTTP Web requests by a custom HttpHandler. | | + | |
- | ==== Public Properties ==== | + | == Return Value == |
- | ^ Name ^ Return ^ DeclaringType ^ Summary ^ | + | * Type:Void |
- | | {{wiki:PublicProperty.gif|Public Property}}[[#IsReusable|IsReusable]] | Boolean | | Gets a value indicating whether another request can use the System.Web.IHttpAsyncHandler instance. | | + | * Description:N/A |
- | ==== Protected Properties ==== | + | == Parameters == |
- | ^ Name ^ Return ^ DeclaringType ^ Summary ^ | + | * //context// |
+ | * Type:HttpContext | ||
+ | * Description:A System.Web.HttpContext object that provides references to the intrinsic server objects (for example: Request, Response, Session, and Server) used to service HTTP requests. | ||
- | ==== Public Events ==== | + | <div newline></div> |
- | ^ Name ^ Event Arguments ^ DeclaringType ^ Summary ^ | + | ** {{wiki:PublicMethod.gif|}} BeginProcessRequest(HttpContext,AsyncCallback,Object) ** |
- | ===== Public Constructors ===== | + | * //Initiates an asynchronous call to the HTTP handler.// |
- | ==== MultiThreadTileResource() ==== | + | == Remarks == |
- | This is the default constructor for the TileResource class. | + | * //N/A// |
- | === Remarks === | + | |
- | This is the default constructor for the TileResource class. | + | |
- | === Parameters === | + | |
- | ^ Name ^ Type ^ Description ^ | + | |
- | [[#Public Constructors|Go Back]] | + | == Return Value == |
- | ===== Protected Constructors ===== | + | * Type:IAsyncResult |
- | ===== Public Methods ===== | + | * Description:A System.IAsyncResult that contains information about the status of the process. |
- | ==== BeginProcessRequest(HttpContext, AsyncCallback, Object) ==== | + | |
- | Initiates an asynchronous call to the HTTP handler. | + | |
- | === Return Value === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | IAsyncResult<!-- System.IAsyncResult --> | A System.IAsyncResult that contains information about the status of the process. | | + | |
- | === Parameters === | + | == Parameters == |
- | ^ Name ^ Type ^ Description ^ | + | * //context// |
- | | context | HttpContext<!-- System.Web.HttpContext --> | A System.Web.HttpContext object that provides references to intrinsic server objects (for example: Request, Response, Session, and Server) used to service HTTP requests. | | + | * Type:HttpContext |
- | | cb | AsyncCallback<!-- System.AsyncCallback --> | The System.AsyncCallback to call when the asynchronous method call is complete. If cb is null, the delegate is not called. | | + | * Description:A System.Web.HttpContext object that provides references to intrinsic server objects (for example: Request, Response, Session, and Server) used to service HTTP requests. |
- | | extraData | Object<!-- System.Object --> | Any extra data needed to process the request. | | + | |
- | <!-- ThinkGeo.MapSuite.MvcEdition.MultiThreadTileResource --> | + | * //cb// |
- | [[#Public Methods|Go Back]] | + | * Type:AsyncCallback |
- | ==== EndProcessRequest(IAsyncResult) ==== | + | * Description:The System.AsyncCallback to call when the asynchronous method call is complete. If cb is null, the delegate is not called. |
- | Provides an asynchronous process End method when the process ends. | + | |
- | === Return Value === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | Void<!-- System.Void --> | | | + | |
- | === Parameters === | + | * //extraData// |
- | ^ Name ^ Type ^ Description ^ | + | * Type:Object |
- | | result | IAsyncResult<!-- System.IAsyncResult --> | A System.IAsyncResult that contains information about the status of the process. | | + | * Description:Any extra data needed to process the request. |
- | <!-- ThinkGeo.MapSuite.MvcEdition.MultiThreadTileResource --> | + | <div newline></div> |
- | [[#Public Methods|Go Back]] | + | ** {{wiki:PublicMethod.gif|}} EndProcessRequest(IAsyncResult) ** |
- | ==== Equals(Object) ==== | + | |
- | === Return Value === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | Boolean<!-- System.Boolean --> | | | + | |
- | === Parameters === | + | * //Provides an asynchronous process End method when the process ends.// |
- | ^ Name ^ Type ^ Description ^ | + | == Remarks == |
- | | obj | Object<!-- System.Object --> | | | + | * //N/A// |
- | <!-- System.Object --> | + | == Return Value == |
- | [[#Public Methods|Go Back]] | + | * Type:Void |
- | ==== GetHashCode() ==== | + | * Description:N/A |
- | === Return Value === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | Int32<!-- System.Int32 --> | | | + | |
- | === Parameters === | + | == Parameters == |
- | ^ Name ^ Type ^ Description ^ | + | * //result// |
+ | * Type:IAsyncResult | ||
+ | * Description:A System.IAsyncResult that contains information about the status of the process. | ||
- | <!-- System.Object --> | + | <div newline></div> |
- | [[#Public Methods|Go Back]] | + | ** {{wiki:PublicMethod.gif|}} ToString() ** |
- | ==== GetType() ==== | + | |
- | === Return Value === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | Type<!-- System.Type --> | | | + | |
- | === Parameters === | + | * //N/A// |
- | ^ Name ^ Type ^ Description ^ | + | == Remarks == |
+ | * //N/A// | ||
- | <!-- System.Object --> | + | == Return Value == |
- | [[#Public Methods|Go Back]] | + | * Type:String |
- | ==== ProcessRequest(HttpContext) ==== | + | * Description:N/A |
- | Enables processing of HTTP Web requests by a custom HttpHandler. | + | |
- | === Return Value === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | Void<!-- System.Void --> | | | + | |
- | === Parameters === | + | == Parameters == |
- | ^ Name ^ Type ^ Description ^ | + | <div newline></div> |
- | | context | HttpContext<!-- System.Web.HttpContext --> | A System.Web.HttpContext object that provides references to the intrinsic server objects (for example: Request, Response, Session, and Server) used to service HTTP requests. | | + | ** {{wiki:PublicMethod.gif|}} Equals(Object) ** |
- | <!-- ThinkGeo.MapSuite.MvcEdition.MultiThreadTileResource --> | + | * //N/A// |
- | [[#Public Methods|Go Back]] | + | == Remarks == |
- | ==== ToString() ==== | + | * //N/A// |
- | === Return Value === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | String<!-- System.String --> | | | + | |
- | === Parameters === | + | == Return Value == |
- | ^ Name ^ Type ^ Description ^ | + | * Type:Boolean |
+ | * Description:N/A | ||
- | <!-- System.Object --> | + | == Parameters == |
- | [[#Public Methods|Go Back]] | + | * //obj// |
- | ===== Protected Methods ===== | + | * Type:Object |
- | ==== BeginProcessRequestCore(HttpContext, AsyncCallback, Object) ==== | + | * Description:N/A |
- | Initiates an asynchronous call to the HTTP handler. | + | |
- | === Return Value === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | IAsyncResult<!-- System.IAsyncResult --> | A System.IAsyncResult that contains information about the status of the process. | | + | |
- | === Parameters === | + | <div newline></div> |
- | ^ Name ^ Type ^ Description ^ | + | ** {{wiki:PublicMethod.gif|}} GetHashCode() ** |
- | | context | HttpContext<!-- System.Web.HttpContext --> | A System.Web.HttpContext object that provides references to intrinsic server objects (for example: Request, Response, Session, and Server) used to service HTTP requests. | | + | |
- | | cb | AsyncCallback<!-- System.AsyncCallback --> | The System.AsyncCallback to call when the asynchronous method call is complete. If cb is null, the delegate is not called. | | + | |
- | | extraData | Object<!-- System.Object --> | Any extra data needed to process the request. | | + | |
- | <!-- ThinkGeo.MapSuite.MvcEdition.MultiThreadTileResource --> | + | * //N/A// |
- | [[#Protected Methods|Go Back]] | + | == Remarks == |
- | ==== EndProcessRequestCore(IAsyncResult) ==== | + | * //N/A// |
- | Provides an asynchronous process End method when the process ends. | + | |
- | === Return Value === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | Void<!-- System.Void --> | | | + | |
- | === Parameters === | + | == Return Value == |
- | ^ Name ^ Type ^ Description ^ | + | * Type:Int32 |
- | | result | IAsyncResult<!-- System.IAsyncResult --> | A System.IAsyncResult that contains information about the status of the process. | | + | * Description:N/A |
- | <!-- ThinkGeo.MapSuite.MvcEdition.MultiThreadTileResource --> | + | == Parameters == |
- | [[#Protected Methods|Go Back]] | + | <div newline></div> |
- | ==== Finalize() ==== | + | ** {{wiki:PublicMethod.gif|}} GetType() ** |
- | === Return Value === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | Void<!-- System.Void --> | | | + | |
- | === Parameters === | + | * //N/A// |
- | ^ Name ^ Type ^ Description ^ | + | == Remarks == |
+ | * //N/A// | ||
- | <!-- System.Object --> | + | == Return Value == |
- | [[#Protected Methods|Go Back]] | + | * Type:Type |
- | ==== MemberwiseClone() ==== | + | * Description:N/A |
- | === Return Value === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | Object<!-- System.Object --> | | | + | |
- | === Parameters === | + | == Parameters == |
- | ^ Name ^ Type ^ Description ^ | + | <div newline></div> |
+ | ==== Protected Methods ==== | ||
+ | ** {{wiki:ProtectedMethod.gif|}} ProcessRequestCore(HttpContext) ** | ||
- | <!-- System.Object --> | + | * //Enables processing of HTTP Web requests by a custom HttpHandler.// |
- | [[#Protected Methods|Go Back]] | + | == Remarks == |
- | ==== ProcessRequestCore(HttpContext) ==== | + | * //N/A// |
- | Enables processing of HTTP Web requests by a custom HttpHandler. | + | |
- | === Return Value === | + | |
- | ^ Return Type ^ Description ^ | + | |
- | | Void<!-- System.Void --> | | | + | |
- | === Parameters === | + | == Return Value == |
- | ^ Name ^ Type ^ Description ^ | + | * Type:Void |
- | | context | HttpContext<!-- System.Web.HttpContext --> | | | + | * Description:N/A |
+ | |||
+ | == Parameters == | ||
+ | * //context// | ||
+ | * Type:HttpContext | ||
+ | * Description:N/A | ||
+ | |||
+ | <div newline></div> | ||
+ | ** {{wiki:ProtectedMethod.gif|}} BeginProcessRequestCore(HttpContext,AsyncCallback,Object) ** | ||
+ | |||
+ | * //Initiates an asynchronous call to the HTTP handler.// | ||
+ | == Remarks == | ||
+ | * //N/A// | ||
+ | |||
+ | == Return Value == | ||
+ | * Type:IAsyncResult | ||
+ | * Description:A System.IAsyncResult that contains information about the status of the process. | ||
+ | |||
+ | == Parameters == | ||
+ | * //context// | ||
+ | * Type:HttpContext | ||
+ | * Description:A System.Web.HttpContext object that provides references to intrinsic server objects (for example: Request, Response, Session, and Server) used to service HTTP requests. | ||
+ | |||
+ | * //cb// | ||
+ | * Type:AsyncCallback | ||
+ | * Description:The System.AsyncCallback to call when the asynchronous method call is complete. If cb is null, the delegate is not called. | ||
+ | |||
+ | * //extraData// | ||
+ | * Type:Object | ||
+ | * Description:Any extra data needed to process the request. | ||
+ | |||
+ | <div newline></div> | ||
+ | ** {{wiki:ProtectedMethod.gif|}} EndProcessRequestCore(IAsyncResult) ** | ||
+ | |||
+ | * //Provides an asynchronous process End method when the process ends.// | ||
+ | == Remarks == | ||
+ | * //N/A// | ||
+ | |||
+ | == Return Value == | ||
+ | * Type:Void | ||
+ | * Description:N/A | ||
+ | |||
+ | == Parameters == | ||
+ | * //result// | ||
+ | * Type:IAsyncResult | ||
+ | * Description:A System.IAsyncResult that contains information about the status of the process. | ||
+ | |||
+ | <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|}} IsReusable ** | ||
- | <!-- ThinkGeo.MapSuite.MvcEdition.MultiThreadTileResource --> | ||
- | [[#Protected Methods|Go Back]] | ||
- | ===== Public Properties ===== | ||
- | ==== IsReusable ==== | ||
Gets a value indicating whether another request can use the System.Web.IHttpAsyncHandler instance. | Gets a value indicating whether another request can use the System.Web.IHttpAsyncHandler instance. | ||
- | === Return Value === | + | == Remarks == |
- | ^ Return Type ^ | + | N/A |
- | | Boolean<!-- System.Boolean --> | | + | == Return Value == |
+ | * Type:Boolean | ||
- | <!-- ThinkGeo.MapSuite.MvcEdition.MultiThreadTileResource --> | + | ==== Protected Properties ==== |
- | [[#Public Properties|Go Back]] | + | ==== Public Events ==== |
- | ===== Protected Properties ===== | + | |
- | ===== Public Events ===== | + | |
- | __NOTOC__ | + | |
- | [[Category:MvcEdition]] | + | |
- | [[Category:ThinkGeo.MapSuite.MvcEdition]] | + | |
- | [[Category:UpdateDocumentation]] | + | |