Uri.UriSchemeNntp Fält

Definition

Anger att URI:n är en internetnyhetsgrupp och nås via NNTP (Network News Transport Protocol). Detta fält är skrivskyddat.

public: static initonly System::String ^ UriSchemeNntp;
public static readonly string UriSchemeNntp;
 staticval mutable UriSchemeNntp : string
Public Shared ReadOnly UriSchemeNntp As String 

Fältvärde

Exempel

I följande exempel skapas en Uri instans och avgör om schemat är UriSchemeNntp.

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

Kommentarer

NNTP-Uri parsningsfel i .NET Framework version 1.1 har korrigerats.

Gäller för