Click or drag to resize

HttpServiceExtension Class

The base class of a Http Service Extension. Used for Restful Web Services.
Inheritance Hierarchy
SystemObject
  Hummingbird.TestFramework.ExtensibilityHttpServiceExtension

Namespace:  Hummingbird.TestFramework.Extensibility
Assembly:  Hummingbird.TestFramework (in Hummingbird.TestFramework.dll) Version: 1.2.0.0
Syntax
public abstract class HttpServiceExtension

The HttpServiceExtension type exposes the following members.

Constructors
  NameDescription
Protected methodHttpServiceExtension
Initializes a new instance of the HttpServiceExtension class
Top
Properties
  NameDescription
Public propertyClientParameters
Gets the client parameters.
Public propertyHttpRequestServices
Gets a list of HTTP Rest services to test. Commonly, these web services are developed by your organization, and you want to test this service.
Public propertyHttpResponseServices
Gets a list of HTTP REST service to simulate. Commonly. these web services are developed by another organization, you application will call these services.
Public propertyServerParameters
Gets a list of parameters should be used in server parameters (your HTTP handler uses it)
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Protected methodStatic memberGetClientParameter
Gets the parameter used by HttpClient
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Protected methodStatic memberGetServerParameter
Gets the parameter used by HttpServer
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Extension Methods
  NameDescription
Public Extension MethodToStringOrXml
Converts any Object to string representation in String or XML format.
(Defined by ExtensionMethods.)
Public Extension MethodToXmlString
Converts any Object to string representation in XML format.
(Defined by ExtensionMethods.)
Top
Remarks
In the Http Service Extension, it defines all REST web services to be added to Hummingbird. You must provide a list of service to simulate a client or a server. You can also add custom view extensions to visualize in your own way the services, instead of using default viewer: the TreeObject-Text editor
See Also