CSLA.NET 6.0.0
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
RefAndOutOperationParameters.cs
Go to the documentation of this file.
1using System;
2
4{
6 public sealed class RefAndOutOperationParameters
7 : BusinessBase<RefAndOutOperationParameters>
8 {
10
11 // The "b" and "c" parameters should have errors because they are
12 // out and ref, respectively.
13 [Fetch]
14 private void Fetch(string a, out string b, ref string c)
15 {
16 b = string.Empty;
17 }
18 }
19}
This is the base class from which most business objects will be derived.
Definition: BusinessBase.cs:38
@ Serializable
Prevents updating or inserting until the transaction is complete.