virtual public void SetValueType(string type)
 {
     if (_Proxy != null)
     {
         _Proxy.Set("VALUE", type != null ? type : type.ToUpper(CultureInfo.CurrentCulture));
     }
 }
Example #2
0
 virtual public void SetValueType(string type)
 {
     if (_Proxy != null)
     {
         _Proxy.Set("VALUE", type != null ? type : type.ToUpper());
     }
 }
 /// <summary>
 ///     Sets the type of the value.
 /// </summary>
 /// <param name="type">The type.</param>
 public virtual void SetValueType(string type)
 {
     if (_proxy != null)
     {
         if (type != null)
         {
             _proxy.Set("VALUE", type);
         }
     }
 }
Example #4
0
 public virtual void SetValueType(string type)
 {
     _proxy?.Set("VALUE", type != null ? type : type.ToUpper());
 }