예제 #1
0
파일: XmlFormatter.cs 프로젝트: 4vz/Aveezo
        public XmlInputFormatter(XmlPrefix xmlPrefix, TypeRepository typeCollections)
        {
            this.xmlPrefix       = xmlPrefix;
            this.typeCollections = typeCollections;

            SupportedMediaTypes.Clear();
            SupportedEncodings.Clear();
        }
예제 #2
0
 public SoapXmlInputFormatter(XmlPrefix xmlPrefix, TypeRepository typeCollections) : base(xmlPrefix, typeCollections)
 {
     SupportedMediaTypes.Add("application/soap+xml");
     SupportedEncodings.Add(Encoding.UTF8);
 }
예제 #3
0
파일: Xml.cs 프로젝트: 4vz/Aveezo
 internal XmlObjectElement(XmlPrefix xmlPrefix, TypeRepository typeCollections)
 {
     XmlPrefix            = xmlPrefix;
     this.typeCollections = typeCollections;
 }