ZennoLab Assemblies Documentation
ExportInputSettings Method (ZennoPoster)
Example 
ZennoLab.CommandCenter Namespace > ZennoPoster Class : ExportInputSettings Method

Type: System.Guid

Id of task to export settings.

Export the input settings
Syntax
public static string ExportInputSettings( 
   Guid id
)

Parameters

id

Type: System.Guid

Id of task to export settings.

Return Value

Type: System.String

Input settings in xml format.

Example
The following example shows call the ExportInputSettings method.
// Getting GUID of the current project
Guid id = Guid.Parse(project.TaskId);
// Export setting in xml format
string settings = ZennoPoster.ExportInputSettings(id);
// Export setting in xml format
$id = System\Guid::Empty;
$settings = ZennoLab\CommandCenter\ZennoPoster::ExportInputSettings($id);
Requirements

Target Platforms: Desktop: Windows XP SP3 and older. Server: Windows Server 2003 and older.

See Also

Reference

ZennoPoster Class
ZennoPoster Members
ImportInputSettings Method