добавление атрибута xmlns: rim в сериализованный класс - PullRequest
1 голос
/ 23 сентября 2011

Я хотел бы добавить атрибут namespace и prefix в мой сериализованный класс, чтобы мои дочерние элементы могли ссылаться с помощью префикса.

Мой класс выглядит так:

    [System.CodeDom.Compiler.GeneratedCodeAttribute("svcutil", "4.0.30319.1")]
    [System.SerializableAttribute()]
    [System.Diagnostics.DebuggerStepThroughAttribute()]
    [System.ComponentModel.DesignerCategoryAttribute("code")]
    [System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.opengis.net/cat/csw/2.0.2")]
    public partial class SearchResultsType
    {

        private object[] itemsField;

        private string resultSetIdField;

        private ElementSetType elementSetField;

        private bool elementSetFieldSpecified; 
...

Rightтеперь он возвращает это:

<SearchResults recordSchema="urn:oasis:names:tc:ebxml-regrep:xsd:rim:3.0">
    <RegistryPackage id="urn:ogc:def:registryPackage:OGC-CSW-ebRIM-EO::EOProducts" objectType="urn:oasis:names:tc:ebxml-regrep:ObjectType:RegistryObject:RegistryPackage"/>
</SearchResults>

И я хочу, чтобы это выглядело так:

<SearchResults xmlns:rim="urn:oasis:names:tc:ebxml-regrep:xsd:rim:3.0" recordSchema="urn:oasis:names:tc:ebxml-regrep:xsd:rim:3.0">
    <rim:RegistryPackage id="urn:ogc:def:registryPackage:OGC-CSW-ebRIM-EO::EOProducts" objectType="urn:oasis:names:tc:ebxml-regrep:ObjectType:RegistryObject:RegistryPackage"/>
</SearchResults>
...