public XmlInputFormatter(XmlPrefix xmlPrefix, TypeRepository typeCollections) { this.xmlPrefix = xmlPrefix; this.typeCollections = typeCollections; SupportedMediaTypes.Clear(); SupportedEncodings.Clear(); }
public SoapXmlInputFormatter(XmlPrefix xmlPrefix, TypeRepository typeCollections) : base(xmlPrefix, typeCollections) { SupportedMediaTypes.Add("application/soap+xml"); SupportedEncodings.Add(Encoding.UTF8); }
internal XmlObjectElement(XmlPrefix xmlPrefix, TypeRepository typeCollections) { XmlPrefix = xmlPrefix; this.typeCollections = typeCollections; }