Пример #1
0
 public SetDelayedOperation(PersistentList enclosingInstance, int index, object value, object old)
 {
     this.enclosingInstance = enclosingInstance;
     this.index             = index;
     this.value             = value;
     this.old = old;
 }
Пример #2
0
 public SimpleRemoveDelayedOperation(PersistentList enclosingInstance, object value)
 {
     this.enclosingInstance = enclosingInstance;
     this.value             = value;
 }
Пример #3
0
 public RemoveDelayedOperation(PersistentList enclosingInstance, int index, object old)
 {
     this.enclosingInstance = enclosingInstance;
     this.index             = index;
     this.old = old;
 }
Пример #4
0
 public ClearDelayedOperation(PersistentList enclosingInstance)
 {
     this.enclosingInstance = enclosingInstance;
 }
Пример #5
0
 public AddDelayedOperation(PersistentList enclosingInstance, int index, object value)
 {
     this.enclosingInstance = enclosingInstance;
     this.index             = index;
     this.value             = value;
 }
			public SimpleRemoveDelayedOperation(PersistentList enclosingInstance, object value)
			{
				this.enclosingInstance = enclosingInstance;
				this.value = value;
			}
			public RemoveDelayedOperation(PersistentList enclosingInstance, int index, object old)
			{
				this.enclosingInstance = enclosingInstance;
				this.index = index;
				this.old = old;
			}
			public SetDelayedOperation(PersistentList enclosingInstance, int index, object value, object old)
			{
				this.enclosingInstance = enclosingInstance;
				this.index = index;
				this.value = value;
				this.old = old;
			}
			public AddDelayedOperation(PersistentList enclosingInstance, int index, object value)
			{
				this.enclosingInstance = enclosingInstance;
				this.index = index;
				this.value = value;
			}
Пример #10
0
			public ClearDelayedOperation(PersistentList enclosingInstance)
			{
				this.enclosingInstance = enclosingInstance;
			}