AuthenticatedStream.LeaveInnerStreamOpen 속성
정의
이 AuthenticatedStream에서 데이터를 보내고 받는 데 사용하는 스트림이 계속 열려 있는지 여부를 가져옵니다.Gets whether the stream used by this AuthenticatedStream for sending and receiving data has been left open.
public:
property bool LeaveInnerStreamOpen { bool get(); };
public bool LeaveInnerStreamOpen { get; }
member this.LeaveInnerStreamOpen : bool
Public ReadOnly Property LeaveInnerStreamOpen As Boolean
속성 값
내부 스트림이 계속 열려 있으면 true
이고, 그렇지 않으면 false
입니다.true
if the inner stream has been left open; otherwise, false
.
설명
로 설정 된 경우이 클래스 true
의 생성자에 전달 된 스트림은이 클래스의 인스턴스를 닫은 후 닫히지 않습니다.When set to true
, the stream passed to the constructor of this class will not be closed after the instance of this class is closed. 로 설정 false
된 경우이 클래스의 인스턴스를 닫으면 밑줄이 그어진 전송 스트림도 닫힙니다.When set to false
, closing the instance of this class will also close the underlined transport stream. 이 속성의 기본값은 false
입니다.The default value of this property is false
.