Uri.UriSchemeGopher Campo
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Especifica que o URI é acessado por meio do protocolo Gopher. Este campo é somente leitura.
public: static initonly System::String ^ UriSchemeGopher;
public static readonly string UriSchemeGopher;
staticval mutable UriSchemeGopher : string
Public Shared ReadOnly UriSchemeGopher As String
Valor do campo
Exemplos
O exemplo a seguir cria uma Uri instância e determina se o esquema é UriSchemeGopher.
Uri^ address6 = gcnew Uri( "gopher://example.contoso.com/" );
if ( address6->Scheme == Uri::UriSchemeGopher )
{
Console::WriteLine( "Uri is Gopher protocol" );
}
Uri address6 = new Uri("gopher://example.contoso.com/");
if (address6.Scheme == Uri.UriSchemeGopher)
Console.WriteLine("Uri is Gopher protocol");
let address6 = Uri "gopher://example.contoso.com/"
if address6.Scheme = Uri.UriSchemeGopher then
printfn "Uri is Gopher protocol"
Dim address6 As New Uri("gopher://example.contoso.com/")
If address6.Scheme = Uri.UriSchemeGopher Then
Console.WriteLine("Uri is Gopher protocol")
End If
Aplica-se a
Colaborar conosco no GitHub
A fonte deste conteúdo pode ser encontrada no GitHub, onde você também pode criar e revisar problemas e solicitações de pull. Para obter mais informações, confira o nosso guia para colaboradores.