ProjectContextParse Method

Parse the JSON formatted project file, returning a fully populated project file object model.

Definition

Namespace: ProjectTask
Assembly: ProjectTask (in ProjectTask.dll) Version: 25.2814.3647
C#
public static ProjectContext Parse(
	string content,
	Action<string> messageHandler = null
)

Parameters

content  String
JSON formatted content representing the project file to use.
messageHandler  ActionString  (Optional)
Optional reference to a message handler delegate appointed to receive messages from this function, in the form of 'static void CallbackName(string message);'.

Return Value

ProjectContext
Reference to the object model representation of the caller's project file content, if successful. Otherwise, null.

See Also