ITeamFoundationRequestFilter.EnterMethod Method
EnterMethod is called after the method being executed on this request is declared. At the time EnterMethod is called the basic method information will be available. This includes, method name, type, and the list of input paramaters.
This information will be available in requestContext.Method.
An ITeamFoundationRequestFilter can throw a RequestFilterException in EnterMethod to cause the request to be completed early and an error message to be returned to the caller.
Namespace: Microsoft.TeamFoundation.Framework.Server
Assembly: Microsoft.TeamFoundation.Framework.Server (in Microsoft.TeamFoundation.Framework.Server.dll)
Syntax
'Declaration
Sub EnterMethod ( _
requestContext As TeamFoundationRequestContext _
)
void EnterMethod(
TeamFoundationRequestContext requestContext
)
void EnterMethod(
TeamFoundationRequestContext^ requestContext
)
abstract EnterMethod :
requestContext:TeamFoundationRequestContext -> unit
function EnterMethod(
requestContext : TeamFoundationRequestContext
)
Parameters
requestContext
Type: Microsoft.TeamFoundation.Framework.Server.TeamFoundationRequestContextRequestContext being used to execute this request
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.