Exemplo n.º 1
0
        public XmlInputFormatter(XmlPrefix xmlPrefix, TypeRepository typeCollections)
        {
            this.xmlPrefix       = xmlPrefix;
            this.typeCollections = typeCollections;

            SupportedMediaTypes.Clear();
            SupportedEncodings.Clear();
        }
Exemplo n.º 2
0
 public SoapXmlInputFormatter(XmlPrefix xmlPrefix, TypeRepository typeCollections) : base(xmlPrefix, typeCollections)
 {
     SupportedMediaTypes.Add("application/soap+xml");
     SupportedEncodings.Add(Encoding.UTF8);
 }
Exemplo n.º 3
0
Arquivo: Xml.cs Projeto: 4vz/Aveezo
 internal XmlObjectElement(XmlPrefix xmlPrefix, TypeRepository typeCollections)
 {
     XmlPrefix            = xmlPrefix;
     this.typeCollections = typeCollections;
 }