SrgsRule.Id Property

Definition

Gets or sets the identifier for the rule.

public:
 property System::String ^ Id { System::String ^ get(); void set(System::String ^ value); };
public string Id { get; set; }
member this.Id : string with get, set
Public Property Id As String

Property Value

The identifier for the rule.

Exceptions

An attempt is made to set Id to an invalid value.

Remarks

The identifier for a rule is a string that contains the name of the rule.

A value used to set Id must adhere to the following rules:

  • The value must be a valid XML name, as defined in Extensible Markup Language (XML) 1.0 (Fifth Edition). To paraphrase this definition, a valid XML name must begin with a letter, an underscore ('_'), or a colon (':') and can be followed by zero or more NameChar characters (also defined in the XML specification).

  • The value can be "NULL" or "VOID" or "GARBAGE".

  • The value cannot contain any invalid rule ID character. These characters are: '?', '*', '+', '|', '(', '), '^', '$', '/', ';', '.', '=', '<', '>', '[', ']', '{', '}', '\\', ' ', '\t', '\r', and '\n'.

Applies to