/// <summary>
 /// Initializes a new instance of the <see cref="RewriterServerVariable"/> class.
 /// </summary>
 protected internal ServerVariable()
 {
     _type = AllTypes;
 }
Esempio n. 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="RewriterServerVariable"/> class.
 /// </summary>
 /// <param name="name">The name.</param>
 /// <param name="type">The type.</param>
 public ServerVariable(string name, ServerVariableType type)
 {
     _name = name;
     _type = type;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="RewriterServerVariable"/> class.
 /// </summary>
 /// <param name="name">The name.</param>
 /// <param name="type">The type.</param>
 public ServerVariable(string name, ServerVariableType type)
 {
     _name = name;
     _type = type;
 }
Esempio n. 4
0
 /// <summary>
 /// Initializes a new instance of the <see cref="RewriterServerVariable"/> class.
 /// </summary>
 protected internal ServerVariable()
 {
     _type = AllTypes;
 }