MoveUp Method of the IFPCWebFilters Interface

The MoveUp method moves the specified filter one step up the list of filters.

[C++]

Syntax

HRESULT MoveUp(
  [in]  long Index
);

Parameters

Index

Required. Index (the current position indicated by the Order property) of the filter to move down.

Return Value

This method returns S_OK if the call is successful; otherwise, it returns an error code.
[Visual Basic]

Syntax

Sub MoveUp( _
  ByVal Index As Long _
)

Parameters

Index

Required. Index (the current position indicated by the Order property) of the filter to move down.

Return Value

This method has no return values. If the call is unsuccessful, an error is raised that can be intercepted by using an error handler.

Example Code

This VBScript script moves the last Web filter in the FPCWebFilters collection for the containing array one step up the list of Web filters, causing this Web filter to become the next-to-last Web filter to be called among the Web filters with the same priority. It does not include error handling.
' Create the root object.
Dim root  ' The FPCLib.FPC root object
Set root = CreateObject("FPC.Root")
' Declare the other objects needed.
Dim tmgArray  ' An FPCArray object
Dim filters   ' An FPCWebFilters collection
' Get references to the array object 
' and the Web filters collection.
Set tmgArray = root.GetContainingArray()
Set filters = tmgArray.Extensions.WebFilters
' Move the last Web filter in the collection
' one step up the list of Web filters.
If filters.Count > 1 Then
	filters.MoveUp filters.Count
	filters.Save
	WScript.Echo "Done!"
Else
	WSCript.Echo "Two or more Web filters are needed."
End If

Remarks

This method can be used to move a Web filter only into the positions of Web filters that have the same priority.

The MoveUp method is applicable only to the FPCWebFilters collection in an array configuration. The FPCWebFilters collection in the enterprise configuration is not ordered, and this method is disabled in it.

Requirements

Client Requires Windows Vista or Windows XP.
Server Requires Windows Server 2008.
Version Requires Forefront Threat Management Gateway (TMG).
IDL

Declared in Msfpccom.idl.

DLL

Requires Msfpccom.dll.

See Also

FPCWebFilters


Send comments about this topic to Microsoft

Build date: 11/30/2009

© 2008 Microsoft Corporation. All rights reserved.