Uri.UriSchemeNews Alan

Tanım

URI'nin bir İnternet haber grubu olduğunu ve Ağ Haber Aktarım Protokolü (NNTP) üzerinden erişildiğini belirtir. Bu alan salt okunur durumdadır.

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

Alan Değeri

Örnekler

Aşağıdaki örnek bir Uri örnek oluşturur ve düzenin UriSchemeNewsolup olmadığını belirler.

Uri^ address4 = gcnew Uri( "news:123456@contoso.com" );
if ( address4->Scheme == Uri::UriSchemeNews )
{
   Console::WriteLine( "Uri is an Internet news group" );
}
Uri address4 = new Uri("news:123456@contoso.com");
if (address4.Scheme == Uri.UriSchemeNews)
    Console.WriteLine("Uri is an Internet news group");
let address4 = Uri "news:123456@contoso.com"
if address4.Scheme = Uri.UriSchemeNews then
    printfn $"Uri is an Internet news group"
Dim address4 As New Uri("news:123456@contoso.com")
If address4.Scheme = Uri.UriSchemeNews Then
    Console.WriteLine("Uri is an Internet news group")
End If

Şunlara uygulanır