[RegularExpressionAttribute("^[A-Z0-9]+$", ErrorMessage = "Only three upper case letters or numbers are allowed.")] [StringLengthAttribute(10)] [RequiredAttribute] public string MapAcronym { get; set; }
<RegularExpressionAttribute("^[A-Z0-9]+$", ErrorMessage := "Only three upper case letters or numbers are allowed.")> <StringLengthAttribute(10)> <RequiredAttribute> Public Property MapAcronym As String Get Set
public: [RegularExpressionAttribute(L"^[A-Z0-9]+$", ErrorMessage = L"Only three upper case letters or numbers are allowed.")] [StringLengthAttribute(10)] [RequiredAttribute] property String^ MapAcronym { String^ get (); void set (String^ value); }
[<RegularExpressionAttribute("^[A-Z0-9]+$", ErrorMessage = "Only three upper case letters or numbers are allowed.")>] [<StringLengthAttribute(10)>] [<RequiredAttribute>] member MapAcronym : string with get, set
function get_MapAcronym(); function set_MapAcronym(value);
Copyright © 2018, Grid Protection Alliance. All Rights Reserved.