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