GitSharp.Core.LockFile.GetOutputStream C# (CSharp) 메소드

GetOutputStream() 공개 메소드

Obtain the direct output stream for this lock. The stream may only be accessed once, and only after Lock() has been successfully invoked and returned true. Callers must close the stream prior to calling Commit() to commit the change.
public GetOutputStream ( ) : Stream
리턴 Stream
        public Stream GetOutputStream()
        {
            RequireLock();
            return new LockFileOutputStream(this);
        }