Freigeben über


Uri.UriSchemeMailto-Feld

Gibt an, dass der URI eine E-Mail-Adresse ist und der Zugriff über SMTP (Simple Mail Transport Protocol) erfolgt. Dieses Feld ist schreibgeschützt.

Namespace: System
Assembly: System (in system.dll)

Syntax

'Declaration
Public Shared ReadOnly UriSchemeMailto As String
'Usage
Dim value As String

value = Uri.UriSchemeMailto
public static readonly string UriSchemeMailto
public:
static initonly String^ UriSchemeMailto
public static final String UriSchemeMailto
public static final var UriSchemeMailto : String

Beispiel

Im folgenden Beispiel wird eine Uri-Instanz erstellt und bestimmt, ob das Schema UriSchemeMailto ist.

Dim address3 As New Uri("mailto:user@contoso.com?subject=uri")
If address3.Scheme = Uri.UriSchemeMailto Then
    Console.WriteLine("Uri is an email address")
Uri address3 = new Uri("mailto:user@contoso.com?subject=uri");
if (address3.Scheme == Uri.UriSchemeMailto) 
    Console.WriteLine("Uri is an email address");

Plattformen

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile für Pocket PC, Windows Mobile für Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.

Versionsinformationen

.NET Framework

Unterstützt in: 2.0, 1.1, 1.0

.NET Compact Framework

Unterstützt in: 2.0, 1.0

Siehe auch

Referenz

Uri-Klasse
Uri-Member
System-Namespace