Click here to Skip to main content
15,892,927 members
Articles / Programming Languages / C#

Marshalling For Remote Persistence

Rate me:
Please Sign up or sign in to vote.
4.64/5 (4 votes)
24 May 20073 min read 31.6K   181   20  
An article on remote persistence implementation using .NET marshal by value and XML.
/* Tetyana Loskutova http://tetyana.wordpress.com */
using System;

/*
 * Class to be stored remotely. Serializable attribute should be used.
 */

namespace RemotingXml.PersistentClasses
{
    [Serializable]
    public class Address
    {
        private string _city;
        private string _street;

        public Address()
        {
        }

        public Address(string city, string street)
        {
            _city = city;
            _street = street;
        }

        public string City
        {
            get { return _city; }
            set { _city = value; }
        }
        
        public string Street
        {
            get { return _street; }
            set { _street = value; }
        }

        public override string ToString()
        {
            return _city + " " + _street;
        }
    }
}

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
United Arab Emirates United Arab Emirates
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions