ZennoLab Assemblies Documentation
Instance Class
Members  Example  See Also  Send Feedback
ZennoLab.CommandCenter Assembly > ZennoLab.CommandCenter Namespace : Instance Class

Glossary Item Box

Represents a browser's window of ZennoPoster

Syntax

C# 
public class Instance : System.MarshalByRefObject 

Remarks

The Instance class contain the properties such as ErrorDetected and IsVoid. Their use necessary for the correct work of your code.

Example

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;
        }
    }
}
PHPCopy 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();
    }
}
?>

Inheritance Hierarchy

System.Object
   System.MarshalByRefObject
      ZennoLab.CommandCenter.Instance

Requirements

Target Platforms: Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also

© 2012 All Rights Reserved.