序列化因XmlSchemaSet而失败

时间:2013-11-15 09:16:48

标签: c# serialization xml-serialization

我正在开发C Sharp应用程序。我试图将一个Object放入Membase(http://en.wikipedia.org/wiki/Couchbase_Server)进行缓存。

当Object具有XmlSchemaSet类型字段时失败。如果我从Object中删除XmlSchemaSet类型字段,则它将对象存储在Membase中。

如何在具有XmlSchemaSet类型字段的Membase中放置Object?请建议......

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml.Schema;

namespace Serialization
{
    [Serializable]
    public class DataObject
    {
        private string folder = "F1";
    private XmlSchemaSet schemaSet = null;
        public string Folder
        {
            get
            {
                return this.folder;
            }
            set
            {
                this.folder = value;
            }
        }

        public XmlSchemaSet SchemaSet
        {
            get
            {
                return schemaSet;
            }

            set
            {
                this.schemaSet = value;
            }

        }
    }
}

0 个答案:

没有答案