Taijutsu.Data.Internal.DataContext.RegisterUncompletedSubordinate C# (CSharp) Method

RegisterUncompletedSubordinate() protected method

protected RegisterUncompletedSubordinate ( ) : void
return void
        protected virtual void RegisterUncompletedSubordinate()
        {
            AssertNotDisposed();

            subordinatesCount++;
        }

Usage Example

Beispiel #1
0
            public Subordinate(DataContext master)
            {
                if (master == null)
                {
                    throw new ArgumentNullException("master");
                }

                this.master = master;
                master.RegisterUncompletedSubordinate();
            }