| Icon | Member | Description |
|---|---|---|
| Arguments<(Of <(T1, T2>)>)(Func<(Of <(T1>)>), Func<(Of <(T2>)>)) | Throws exception if one of the provided objects is null. Enforce.Arguments(() => controller, () => service); | |
| Arguments<(Of <(T1, T2, T3>)>)(Func<(Of <(T1>)>), Func<(Of <(T2>)>), Func<(Of <(T3>)>)) | Throws exception if one of the provided objects is null. Enforce.Arguments(() => controller, () => service, () => parameters); | |
| Arguments<(Of <(T1, T2, T3, T4>)>)(Func<(Of <(T1>)>), Func<(Of <(T2>)>), Func<(Of <(T3>)>), Func<(Of <(T4>)>)) | Throws exception if one of the provided objects is null. Enforce.Arguments(() => controller, () => service, () => parameters); | |
| Arguments<(Of <(T1, T2, T3, T4, T5>)>)(Func<(Of <(T1>)>), Func<(Of <(T2>)>), Func<(Of <(T3>)>), Func<(Of <(T4>)>), Func<(Of <(T5>)>)) | Throws exception if one of the provided objects is null. Enforce.Arguments(() => controller, () => service, () => parameters); |