Uri.UriSchemeNntp Veld

Definitie

Hiermee geeft u op dat de URI een internetnieuwsgroep is en toegankelijk is via het Network News Transport Protocol (NNTP). Dit veld is alleen-lezen.

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

Waarde van veld

Voorbeelden

In het volgende voorbeeld wordt een Uri exemplaar gemaakt en wordt bepaald of het schema is 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

Opmerkingen

De NNTP Uri parseringsfouten in .NET Framework versie 1.1 zijn gecorrigeerd.

Van toepassing op