NegotiateStream.Length 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
기본 스트림의 길이를 가져옵니다.
public:
virtual property long Length { long get(); };
public override long Length { get; }
member this.Length : int64
Public Overrides ReadOnly Property Length As Long
속성 값
내부 스트림의 길이를 지정하는 Int64입니다.
예외
내부 스트림이 NetworkStream일 때 이 속성의 값을 가져올 수 없는 경우
예제
다음 코드 예제에서는이 속성의 값을 표시 합니다.
static void DisplayStreamProperties(NegotiateStream stream)
{
Console.WriteLine("Can read: {0}", stream.CanRead);
Console.WriteLine("Can write: {0}", stream.CanWrite);
Console.WriteLine("Can seek: {0}", stream.CanSeek);
try
{
// If the underlying stream supports it, display the length.
Console.WriteLine("Length: {0}", stream.Length);
} catch (NotSupportedException)
{
Console.WriteLine("Cannot get the length of the underlying stream.");
}
if (stream.CanTimeout)
{
Console.WriteLine("Read time-out: {0}", stream.ReadTimeout);
Console.WriteLine("Write time-out: {0}", stream.WriteTimeout);
}
}
설명
이 속성은 기본 스트림에서 속성을 호출하여 Length 반환되는 값을 반환합니다. 기본 스트림을 검색할 수 없는 경우 이 속성은 일반적으로 예외를 throw합니다. 기본 스트림의 런타임 형식은 throw되는 예외의 런타임 형식을 결정합니다.