Lawo.GlowAnalyzerProxy.Main.LogInfo.LogInfo C# (CSharp) Метод

LogInfo() приватный Метод

private LogInfo ( string path ) : System
path string
Результат System
        internal LogInfo(string path)
        {
            this.path = path;
            this.stream = new FileStream(path, FileMode.Create, FileAccess.Write, FileShare.Read);
            this.writer = new StreamWriter(this.stream);
            this.xmlWriter = XmlWriter.Create(this.writer, new XmlWriterSettings { Indent = true, CloseOutput = true });
            this.logger = new S101Logger(GlowTypes.Instance, this.xmlWriter);
        }