File: System\ComponentModel\DataAnnotations\UrlAttribute.cs
Web Access
Project: src\src\libraries\System.ComponentModel.Annotations\src\System.ComponentModel.Annotations.csproj (System.ComponentModel.Annotations)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace System.ComponentModel.DataAnnotations
{
    [AttributeUsage(AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Parameter,
        AllowMultiple = false)]
    public sealed class UrlAttribute : DataTypeAttribute
    {
        public UrlAttribute()
            : base(DataType.Url)
        {
            // Set DefaultErrorMessage not ErrorMessage, allowing user to set
            // ErrorMessageResourceType and ErrorMessageResourceName to use localized messages.
            DefaultErrorMessage = SR.UrlAttribute_Invalid;
        }
 
        public override bool IsValid(object? value)
        {
            switch (value)
            {
                case Uri valueAsUri when valueAsUri.IsAbsoluteUri:
                {
                    return valueAsUri.Scheme == Uri.UriSchemeHttp
                        || valueAsUri.Scheme == Uri.UriSchemeHttps
                        || valueAsUri.Scheme == Uri.UriSchemeFtp;
                }
                case string valueAsString:
                {
                    return valueAsString.StartsWith("http://", StringComparison.OrdinalIgnoreCase)
                        || valueAsString.StartsWith("https://", StringComparison.OrdinalIgnoreCase)
                        || valueAsString.StartsWith("ftp://", StringComparison.OrdinalIgnoreCase);
                }
                case null:
                {
                    return true;
                }
                default:
                {
                    return false;
                }
            }
        }
    }
}