This documentation is archived and is not being maintained.
MethodInformation Class
Visual Studio 2013
Method information is used to describe an invocation of a web method Tracking parameters, timings, and other method details
Namespace: Microsoft.TeamFoundation.Framework.Server
Assembly: Microsoft.TeamFoundation.Framework.Server (in Microsoft.TeamFoundation.Framework.Server.dll)
The MethodInformation type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | MethodInformation(String, MethodType, EstimatedMethodCost) | Creates a new MethodInformation describing the WebMethod, Page, Handler or Job being executed. |
![]() | MethodInformation(String, MethodType, EstimatedMethodCost, Boolean) | Creates a new MethodInformation describing the WebMethod, Page, Handler or Job being executed. |
| Name | Description | |
|---|---|---|
![]() | EstimatedCost | The estimated cost is a definition of approximately how much processing time and resources will be used in the execution of this method. |
![]() | MethodType | Returns the type of the method. |
![]() | Name | This is the name of the method being executed. |
![]() | Parameters | This is the set of parameters associated with this web method. This collection should not be modified. To update the collection use AddParameter and AddParameterArray. |
| Name | Description | |
|---|---|---|
![]() | AddArrayParameter(String, IEnumerable) | |
![]() | AddArrayParameter<T>(String, IList<T>) | AddArrayParameter records the name of the array and a certain number of values from the array in addition to the overall count of values. |
![]() | AddParameter | AddParameter adds a single name/value to the set of parameters that are used in the execution of the method. |
![]() | AttachQuota | The method associate a counter with a quota. |
![]() | Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) |
![]() | GetHashCode | Serves as the default hash function. (Inherited from Object.) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | ToString | (Overrides Object::ToString().) |
Show:
