ArcFM Responder Mobile Developer Guide
ProcessVersion Method






Name of the version to post.
ObjectID for the row in the Post Queue table.
Process Framework node type for the version being processed
Process Framework node ID for the version being processed
Post Queue priority for the version being processed
This method is responsible for finding the correct post configuration, creating the action data and running all actions associated with the post process.
Syntax
'Declaration
 
Public MustOverride Sub ProcessVersion( _
   ByVal versionName As System.String, _
   ByVal objectId As System.Integer, _
   ByVal nodeType As System.Integer, _
   ByVal nodeId As System.Integer, _
   ByVal priority As System.Integer _
) 
'Usage
 
Dim instance As ServiceManagerExpansion
Dim versionName As System.String
Dim objectId As System.Integer
Dim nodeType As System.Integer
Dim nodeId As System.Integer
Dim priority As System.Integer
 
instance.ProcessVersion(versionName, objectId, nodeType, nodeId, priority)
public abstract void ProcessVersion( 
   System.string versionName,
   System.int objectId,
   System.int nodeType,
   System.int nodeId,
   System.int priority
)
public procedure ProcessVersion( 
    versionName: System.String;
    objectId: System.Integer;
    nodeType: System.Integer;
    nodeId: System.Integer;
    priority: System.Integer
); abstract; 
public __abstract function ProcessVersion( 
   versionName : System.String,
   objectId : System.int,
   nodeType : System.int,
   nodeId : System.int,
   priority : System.int
);
public: abstract void ProcessVersion( 
   System.string* versionName,
   System.int objectId,
   System.int nodeType,
   System.int nodeId,
   System.int priority
) 
public:
abstract void ProcessVersion( 
   System.String^ versionName,
   System.int objectId,
   System.int nodeType,
   System.int nodeId,
   System.int priority
) 

Parameters

versionName
Name of the version to post.
objectId
ObjectID for the row in the Post Queue table.
nodeType
Process Framework node type for the version being processed
nodeId
Process Framework node ID for the version being processed
priority
Post Queue priority for the version being processed
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

ServiceManagerExpansion Class
ServiceManagerExpansion Members

Send Feedback