IPipePressureDropServer Interface

Interface for external servers implementing pipe pressure drop calculation.

Namespace: Autodesk.Revit.DB.Plumbing
Assembly: RevitAPI (in RevitAPI.dll) Version: 25.0.0.0 (25.0.0.0)
Syntax
public interface IPipePressureDropServer : IExternalServer

The IPipePressureDropServer type exposes the following members.

Methods
 NameDescription
Public methodCalculate Calculate the pipe pressure drop.
Public methodGetDescription Implement this method to return a description of the server.
(Inherited from IExternalServer)
Public methodGetHtmlDescription The method that Revit will invoke to get an HTML formatted description of the server.
Public methodGetInformationLink The method that Revit will invoke to obtain a URL address which provides more information about the server.
Public methodGetName Implement this method to return the name of the server.
(Inherited from IExternalServer)
Public methodGetServerId Implement this method to return the id of the server.
(Inherited from IExternalServer)
Public methodGetServiceId Implement this method to return the id of the service.
(Inherited from IExternalServer)
Public methodGetVendorId Implement this method to return the id of the vendor of the server.
(Inherited from IExternalServer)
Top
Remarks
A typical way to use the external server can be:
  • Implement a server class that derives from this interface
  • Create a new server object and register it with the service, see ExternalServiceRegistry.
  • Assign server for the pipe pressure drop calculation in PipeSettings.
See Also