Click here to Skip to main content
15,897,273 members
Articles / Programming Languages / C#

.NET Remoting: Passing through the obstacles path from version 1.0 to 1.1

Rate me:
Please Sign up or sign in to vote.
4.73/5 (68 votes)
31 Mar 20042 min read 221.6K   3.3K   40  
Houston, we have a problem. One small step for mankind, one Giant irritation for developers.
using System;

namespace SharedAssembly
{

	[Serializable]
	public class BasicSkydiveEvent
	{
		public			 string		eventType;
		public			 string		CanapoyType;
		public BasicSkydiveEvent()
		{			
		}
	}

	public delegate void ParachuteDelegate(BasicSkydiveEvent o);


	public class EventWrapper: MarshalByRefObject
	{
		/// <summary>
	
		/// </summary>
		public event ParachuteDelegate ParachuteEvent;
		public void ParachuteEventHandler (BasicSkydiveEvent o) 
		{
			// forward the message to the client
			ParachuteEvent(o);
		}
		
	}
	public interface IParachute 
	{
		string GetCanopyVendorName();
		void   RegisterForEvents(EventWrapper ew);
		void   GetCanopyVendorNameAsync();	
		
		
	}

	public class SharedObj:MarshalByRefObject,IParachute
	{
		public SharedObj()
		{
		}
		 ParachuteDelegate ParachuteEvent =null;
		public string GetCanopyVendorName()
		{
			return "XXX - SYNC";
		}
		public void   RegisterForEvents(EventWrapper ew)
		{
			ParachuteEvent = new ParachuteDelegate(ew.ParachuteEventHandler);
		}
		public void   GetCanopyVendorNameAsync()
		{
			System.Threading.Thread.Sleep(1500);
			BasicSkydiveEvent bse = new BasicSkydiveEvent();
			bse.CanapoyType = "XXX - ASYNC";
			ParachuteEvent(bse);

		   
		}
	}

	
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Israel Israel
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions