Exemplo n.º 1
0
 /*--------------------------------------------------------------------------------------------*/
 public override void Validate()
 {
     base.Validate();
     Name(vCreateObj.Name);
     Secret(vCreateObj.Secret);
     OauthDomains(vCreateObj.OauthDomains);
     ApiValidatorsCustom.ValidateApp(vCreateObj);
     ValidateEdges();
 }
Exemplo n.º 2
0
 /*--------------------------------------------------------------------------------------------*/
 public override void Validate()
 {
     base.Validate();
     Type(vCreateObj.Type);
     Unit(vCreateObj.Unit);
     UnitPrefix(vCreateObj.UnitPrefix);
     Value(vCreateObj.Value);
     ApiValidatorsCustom.ValidateFactorVector(vCreateObj);
     ValidateEdges();
 }
Exemplo n.º 3
0
 /*--------------------------------------------------------------------------------------------*/
 public override void Validate()
 {
     base.Validate();
     Type(vCreateObj.Type);
     ValueX(vCreateObj.ValueX);
     ValueY(vCreateObj.ValueY);
     ValueZ(vCreateObj.ValueZ);
     ApiValidatorsCustom.ValidateFactorLocator(vCreateObj);
     ValidateEdges();
 }
Exemplo n.º 4
0
 /*--------------------------------------------------------------------------------------------*/
 public override void Validate()
 {
     base.Validate();
     Type(vCreateObj.Type);
     Year(vCreateObj.Year);
     Month(vCreateObj.Month);
     Day(vCreateObj.Day);
     Hour(vCreateObj.Hour);
     Minute(vCreateObj.Minute);
     Second(vCreateObj.Second);
     ApiValidatorsCustom.ValidateFactorEventor(vCreateObj);
     ValidateEdges();
 }
Exemplo n.º 5
0
 /*--------------------------------------------------------------------------------------------*/
 public static void Value(long pValue)
 {
     ApiValidatorsCustom.ValidateFactorVectorValue("Vector.Value", pValue);
 }
Exemplo n.º 6
0
 /*--------------------------------------------------------------------------------------------*/
 public static void ValueZ(double pValue)
 {
     ApiValidatorsCustom.ValidateFactorLocatorValueZ("Locator.ValueZ", pValue);
 }
Exemplo n.º 7
0
 /*--------------------------------------------------------------------------------------------*/
 public static void OauthDomains(string pValue)
 {
     ApiValidatorsCustom.ValidateAppOauthDomains("OauthDomains", pValue);
 }
Exemplo n.º 8
0
 /*--------------------------------------------------------------------------------------------*/
 public static void Year(long pValue)
 {
     Range("Eventor.Year", pValue, -100000000000, 100000000000);
     ApiValidatorsCustom.ValidateFactorEventorYear("Eventor.Year", pValue);
 }