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