Uri.UriSchemeNntp 欄位
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
指定 URI 為網際網路新聞群組,並且要透過 Network News Transport Protocol (NNTP) 存取。 此欄位為唯讀。
public: static initonly System::String ^ UriSchemeNntp;
public static readonly string UriSchemeNntp;
staticval mutable UriSchemeNntp : string
Public Shared ReadOnly UriSchemeNntp As String
欄位值
範例
下列範例會 Uri 建立 實例,並判斷配置是否為 UriSchemeNntp 。
Uri^ address5 = gcnew Uri( "nntp://news.contoso.com/123456@contoso.com" );
if ( address5->Scheme == Uri::UriSchemeNntp )
{
Console::WriteLine( "Uri is nntp protocol" );
}
Uri address5 = new Uri("nntp://news.contoso.com/123456@contoso.com");
if (address5.Scheme == Uri.UriSchemeNntp)
Console.WriteLine("Uri is nntp protocol");
let address5 = Uri "nntp://news.contoso.com/123456@contoso.com"
if address5.Scheme = Uri.UriSchemeNntp then
printfn "Uri is nntp protocol"
Dim address5 As New Uri("nntp://news.contoso.com/123456@contoso.com")
If address5.Scheme = Uri.UriSchemeNntp Then
Console.WriteLine("Uri is nntp protocol")
End If
備註
.NET Framework 1.1 版中的 NNTP Uri 剖析錯誤已修正。