private MyType(NoNeedForValidationSentinel _, MyType f1, string f2, string f3, MyType f4)
 {
     F1 = f1;
     F2 = f2;
     F3 = f3;
     F4 = f4;
 }
 private Composite123(NoNeedForValidationSentinel _, string stringF, string nullableStringF, int?nullableIntF, int?intF, double floatF, ImmutableArray <string>?nullListF, Composite123 thisF)
 {
     StringF         = stringF;
     NullableStringF = nullableStringF;
     NullableIntF    = nullableIntF;
     IntF            = intF;
     FloatF          = floatF;
     NullListF       = nullListF;
     ThisF           = thisF;
 }
Example #3
0
        private DataSchema(
            NoNeedForValidationSentinel _,
            ImmutableArray <Entity> entities,
            ImmutableArray <TypeDef> types
            )
        {
            Validate(entities, types).ThrowErrors("Could not create DataSchema");

            Entities = entities;
            Types    = types;
        }
Example #4
0
 private Scalar123(NoNeedForValidationSentinel _, string value)
 {
     Value = value;
 }
 private Composite123(NoNeedForValidationSentinel _, string field543, int abcSS)
 {
     Field543 = field543;
     AbcSS    = abcSS;
 }
 private Test123(NoNeedForValidationSentinel _, ImmutableArray <string> field543, ImmutableArray <int> someName, int?abcSS)
 {
     Field543 = field543;
     SomeName = someName;
     AbcSS    = abcSS;
 }
 private Equals2(NoNeedForValidationSentinel _, string value)
 {
     Value = value;
 }
Example #8
0
 private A(NoNeedForValidationSentinel _, string h, int h2)
 {
     H  = h;
     H2 = h2;
 }
Example #9
0
 private Email(NoNeedForValidationSentinel _, string value)
 {
     Value = value;
 }
 private A(NoNeedForValidationSentinel _, string h)
 {
     H = h;
 }
 private A(NoNeedForValidationSentinel _, string propA, string propAX)
 {
     PropA  = propA;
     PropAX = propAX;
 }
 private B(NoNeedForValidationSentinel _, string propB)
 {
     PropB = propB;
 }
Example #13
0
 private Test123(NoNeedForValidationSentinel _, ImmutableArray <string> field543, int abcSS)
 {
     Field543 = field543;
     AbcSS    = abcSS;
 }
 private CustomValidatorTest(NoNeedForValidationSentinel _, string f1)
 {
     F1 = f1;
 }
Example #15
0
 private T(NoNeedForValidationSentinel _, int a, ImmutableArray <string> b)
 {
     A = a;
     B = b;
 }
Example #16
0
 private Robot(NoNeedForValidationSentinel _, string name)
 {
     Name = name;
 }
 private A(NoNeedForValidationSentinel _, string a)
 {
     A2 = a;
 }
Example #18
0
 private User(NoNeedForValidationSentinel _, string name, Email email)
 {
     Name  = name;
     Email = email;
 }
Example #19
0
 private Y(NoNeedForValidationSentinel _, A p)
 {
     P = p;
 }