Click here to Skip to main content
15,897,518 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 House
    {
        private Address _address;
        private string _owner;

        public House()
        {
        }

        public House(Address address, string owner)
        {
            _address = address;
            _owner = owner;
        }


        public Address Address
        {
            get { return _address; }
            set { _address = value; }
        }
        
        public string Owner
        {
            get { return _owner; }
            set { _owner = value; }
        }

        public override string ToString()
        {
            return _owner + "/" + _address;
        }
    }
}

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