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# | ![]() |
---|---|
using System; using ZennoLab.CommandCenter; namespace Sample { internal class Example { public static int Execute() { // create a new Instance object Instance instance = new Instance("127.0.0.1", 40500, "server"); // clear cookie instance.ClearCookie(); // clear cache instance.ClearCache(); // go to zennolab.com 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 | ![]() |
---|---|
<?php namespace System; namespace ZennoLab\CommandCenter; class Example { public static function Execute() { // create a new Instance object $instance = new Instance("127.0.0.1", 40500, "server"); // clear cookie $instance->ClearCookie(); // clear cache $instance->ClearCache(); // go to zennolab.com 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; } } ?> |
System.Object
System.MarshalByRefObject
ZennoLab.CommandCenter.Instance
ZennoLab.CommandCenter.EmptyInstance
Target Platforms: Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family