EwsServiceXmlWriter constructor
EwsServiceXmlWriter(
- ExchangeServiceBase _service,
- StreamConsumer<
List< ? streamint> >
Implementation
EwsServiceXmlWriter(this._service, StreamConsumer<List<int>>? stream) {
// XmlWriterSettings settings = new XmlWriterSettings();
// settings.Indent = true;
//
// settings.Encoding = EwsServiceXmlWriter.utf8Encoding;
//
// this.xmlWriter = XmlWriter.Create(stream, settings);
// todo("implement constructor with arguments")
this._xmlWriter = XmlWriter(stream);
}