| C# | |
|---|---|
public class Instance : System.MarshalByRefObject | |
The Instance class contain the properties such as ErrorDetected and IsVoid. Their use necessary for the correct work of your code.
The following example creates an Instance object and shows the uses of the object Tab class.
| C# | Copy Code |
|---|---|
using System; using ZennoLab.CommandCenter; namespace Sample { internal class Example { public static int Execute() { Instance instance = new Instance("127.0.0.1", 40500, "server"); instance.ClearCookie(); instance.ClearCache(); Tab tab = instance.MainTab; if (tab.IsNull) return -1; if (tab.IsVoid) return -1; tab.Navigate("zennolab.com"); if (tab.IsBusy) tab.WaitDownloading(); return 0; } } } | |
| PHP | Copy Code |
|---|---|
<?php namespace System; namespace ZennoLab\CommandCenter; class Example { public static function Execute($instance) { $instance = new Instance("127.0.0.1", 40500, "server"); $instance->ClearCookie(); $instance->ClearCache(); $tab = $instance->MainTab; if ($tab->IsNull) return -1; if ($tab->IsVoid) return -1; $tab->Navigate("zennolab.com"); if ($tab->IsBusy) $tab->WaitDownloading(); } } ?> | |
System.Object
System.MarshalByRefObject
ZennoLab.CommandCenter.Instance
Target Platforms: Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family