Opc.Ua.XmlEncoder.Dispose C# (CSharp) 메소드

Dispose() 보호된 메소드

An overrideable version of the Dispose.
protected Dispose ( bool disposing ) : void
disposing bool
리턴 void
        protected virtual void Dispose(bool disposing)
        {
            if (disposing) 
            {
                if (m_writer != null)
                {
                    m_writer.Flush();
                    m_writer.Dispose();
                    m_writer = null;
                }
            }
        }
        #endregion

Same methods

XmlEncoder::Dispose ( ) : void