using System;
using System.Collections.Generic;
using System.Text;
using System.Runtime.Remoting;
using RemoteCalendars.Core;
using System.Windows.Forms;
namespace RC4IE{
public class RC4IEClass : MarshalByRefObject
{
private static RC4IEClass _rc4ie;
private static RemoteCalendarsController _controller;
public RC4IEClass()
{
}
public static RemoteCalendarsController RemoteCalendarsController
{
set{_controller = value;}
}
public void SubscribeFromIE(string s)
{
//MessageBox.Show(s);
try
{
_controller.SubscribeFromIE(s);
}
catch (Exception exc) { MessageBox.Show(exc.Message); }
}
}
}
|