Exemple #1
0
 public (VarStruct?, VarStruct?) OpVarStruct(VarStruct?p1, Current current) => (p1, p1);
Exemple #2
0
 public void OpDerivedException(int?a, string?b, VarStruct?vs, Current current) =>
 throw new DerivedException(false, a, b, vs, b, vs);
Exemple #3
0
 public void OpRequiredException(int?a, string?b, VarStruct?vs, Current current)
 {
     throw new RequiredException(false, a, b, vs, b ?? "test", vs ?? new VarStruct(""));
 }
Exemple #4
0
 public (VarStruct?, VarStruct?) OpVarStruct(VarStruct?p1, Current current, CancellationToken cancel) =>
 (p1, p1);
Exemple #5
0
 public void OpRequiredException(int?a, string?b, VarStruct?vs, Current current, CancellationToken cancel) =>
 throw new RequiredException(false, a, b, vs, b ?? "test", vs ?? new VarStruct(""));
Exemple #6
0
 public void OpDerivedException(int?a, string?b, VarStruct?vs, Current current, CancellationToken cancel) =>
 throw new DerivedException(false, a, b, vs, b, vs);
Exemple #7
0
 public ValueTask OpRequiredExceptionAsync(int?a, string?b, VarStruct?vs, Current c)
 {
     throw new RequiredException(false, a, b, vs, b ?? "test", vs ?? new VarStruct(""));
 }
Exemple #8
0
 public ValueTask OpDerivedExceptionAsync(int?a, string?b, VarStruct?vs, Current c) =>
 throw new DerivedException(false, a, b, vs, b, vs);