Zennolab.CommandCenter
IZennoCustomCode Interface
Members  Example  See Also  Send Feedback
Zennolab.CommandCenter Namespace : IZennoCustomCode Interface
Defines methods that allow you to run execution of code in ZennoPoster

Syntax

C# 
public interface IZennoCustomCode 

Example

The following example demonstrates the implementation of IZennoCucstomCode
C#Copy Code
using System;
using Zennolab.CommandCenter;
 
namespace ZennoCustomCode
{
    class Program : IZennoCustomCode
    { 
        public int ExecuteCode()
        {
            return 0;
        }
    }
}
PHPCopy Code
<?php
import namespace System;
import namespace Zennolab:::CommandCenter;
 
[Export]
class Program implements IZennoCustomCode
{
    public function ExecuteCode()
    {
        return 0;
    }
}
?>

Requirements

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

See Also

© 2011 All Rights Reserved.