BlackLinks.Templates.TemplateSource.Close C# (CSharp) Method

Close() public method

public Close ( ) : void
return void
        public void Close()
        {
            if (this.SourceStream == null)
                return;

            this.SourceStream.Close ();
            this.SourceStream = null;
        }