Microsoft.Protocols.TestSuites.MS_ASHTTP.SyncStore.SyncStore C# (CSharp) Method

SyncStore() public method

Initializes a new instance of the SyncStore class.
public SyncStore ( ) : System.Collections.ObjectModel
return System.Collections.ObjectModel
        public SyncStore()
        {
            // Initialize the AddCommands collection.
            if (this.addCommands != null)
            {
                this.addCommands.Clear();
            }
            else
            {
                this.addCommands = new Collection<SyncItem>();
            }

            // Initialize the AddResponses collection.
            if (this.addResponses != null)
            {
                this.addResponses.Clear();
            }
            else
            {
                this.addResponses = new Collection<Response.SyncCollectionsCollectionResponsesAdd>();
            }
        }
SyncStore