Click here to Skip to main content
15,885,537 members
Articles / Programming Languages / C#

Optimizing Serialization in .NET - part 2

Rate me:
Please Sign up or sign in to vote.
4.95/5 (34 votes)
27 Nov 2006Public Domain33 min read 327.5K   3.7K   156  
Provides code and techniques to enable developers to optimize serialization of DataSets/DataTables.
using System;
using System.Collections;
using System.Runtime.Remoting.Channels;

namespace SimmoTech.Utils.Remoting
{
	public class CustomBinaryServerFormatterSinkProvider: IServerFormatterSinkProvider 
	{
		private IServerChannelSinkProvider nextProvider;

		public CustomBinaryServerFormatterSinkProvider() {}
		public CustomBinaryServerFormatterSinkProvider(IDictionary properties, ICollection providerData) {}
		
		public IServerChannelSink CreateSink(IChannelReceiver channel)
		{
			if (channel == null) throw new ArgumentNullException("channel");

			return new CustomBinaryServerFormatterSink(nextProvider.CreateSink(channel), channel);
		}

		public IServerChannelSinkProvider Next
		{
			get { return nextProvider; }
			set { nextProvider = value; }
		}

		public void GetChannelData(IChannelDataStore channelData)
		{
		}
		
	}
}

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, along with any associated source code and files, is licensed under A Public Domain dedication


Written By
Software Developer (Senior) Hunton Information Systems Ltd.
United Kingdom United Kingdom
Simon Hewitt is a freelance IT consultant and is MD of Hunton Information Systems Ltd.

He is currently looking for contract work in London.

He is happily married to Karen (originally from Florida, US), has a lovely daughter Bailey, and they live in Kings Langley, Hertfordshire, UK.

Comments and Discussions