EwsServiceXmlWriter constructor

EwsServiceXmlWriter(
  1. ExchangeServiceBase _service,
  2. StreamConsumer<List<int>>? stream
)
Initializes a new instance of the The service. The stream.

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);
}