Microsoft Internet Security and Acceleration Server 2004 SDK

IFPCPolicyRules::AddAccessRule[C++]

FPCPolicyRules.AddAccessRule [Visual Basic]

[C++]

The AddAccessRule method creates a new FPCPolicyRule object representing an access rule in the collection and returns a reference to it.

HRESULT AddAccessRule(
  BSTR Name,
  IFPCPolicyRule** ppNewRule
);

Parameters

Name
[in] Required. BSTR that specifies the name of the new access rule.
ppNewRule
[out] Address of an interface pointer that on return points to an IFPCPolicyRule interface representing the new access rule.

Return Values

This method returns one of the following:

Remarks

The name assigned to the new rule must be unique. If the AddAccessRule method is called with the name of an existing policy rule, the method fails.

An access rule defines the actions that will be taken when specific users attempt to access specific sites or content through the ISA Server computer. The access rule represented by the IFPCPolicyRule interface created can be configured by setting the properties of the IFPCAccessProperties interface accessed through the AccessProperties property.

[Visual Basic]

The AddAccessRule method creates a new FPCPolicyRule object representing an access rule in the collection and returns a reference to it.

Function AddAccessRule( _
  ByVal Name As String _
) As FPCPolicyRule

Parameters

Name
[in] Required. String that specifies the name of the new access rule.

Return Values

This method returns a reference to the FPCPolicyRule object if the operation is successful. Otherwise, an error is raised that can be intercepted by using an error handler.

Remarks

The name assigned to the new rule must be unique. If the AddAccessRule method is called with the name of an existing policy rule, the method fails.

An access rule defines the actions that will be taken when specific users attempt to access specific sites or content through the ISA Server computer. The access rule defined by the FPCPolicyRule object created can be configured by setting the properties of the FPCAccessProperties object accessed through the AccessProperties property.

Requirements

Server: Requires Windows Server 2003 or Windows 2000.
Version: Requires Internet Security and Acceleration Server 2004.
Header: Declared in Msfpccom.idl.
Library: Use Microsoft Internet Security and Acceleration Server 2004 Administration Library.

See Also

FPCPolicyRules