Microsoft.Protocols.TestSuites.SharedAdapter.ObjectGroupObjectDeclare.ObjectGroupObjectDeclare C# (CSharp) Method

ObjectGroupObjectDeclare() public method

Initializes a new instance of the ObjectGroupObjectDeclare class.
public ObjectGroupObjectDeclare ( ) : System.Collections.Generic
return System.Collections.Generic
        public ObjectGroupObjectDeclare()
            : base(StreamObjectTypeHeaderStart.ObjectGroupObjectDeclare)
        {
            this.ObjectExtendedGUID = new ExGuid();
            this.ObjectPartitionID = new Compact64bitInt();
            this.ObjectDataSize = new Compact64bitInt();
            this.ObjectReferencesCount = new Compact64bitInt();
            this.CellReferencesCount = new Compact64bitInt();

            this.ObjectPartitionID.DecodedValue = 1;
            this.ObjectReferencesCount.DecodedValue = 1;
            this.CellReferencesCount.DecodedValue = 0;
        }