Uri.UriSchemeMailto 字段
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
指定 URI 是一个电子邮件地址,需通过简单邮件传输协议 (SMTP) 访问。 此字段为只读。
public: static initonly System::String ^ UriSchemeMailto;
public static readonly string UriSchemeMailto;
staticval mutable UriSchemeMailto : string
Public Shared ReadOnly UriSchemeMailto As String
以下示例创建一个 Uri 实例,并确定方案是否为 UriSchemeMailto。
Uri^ address3 = gcnew Uri( "mailto:user@contoso.com?subject=uri" );
if ( address3->Scheme == Uri::UriSchemeMailto )
{
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");
let address3 = Uri "mailto:user@contoso.com?subject=uri"
if address3.Scheme = Uri.UriSchemeMailto then
printfn $"Uri is an email address"
Dim address3 As New Uri("mailto:user@contoso.com?subject=uri")
If address3.Scheme = Uri.UriSchemeMailto Then
Console.WriteLine("Uri is an email address")
End If
产品 | 版本 |
---|---|
.NET | Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9 |
.NET Framework | 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1 |
.NET Standard | 2.0, 2.1 |