// Token: 0x06000901 RID: 2305 RVA: 0x0001F4F0 File Offset: 0x0001D6F0
        public void Initialize(ObjectId objectId)
        {
            if (objectId == null)
            {
                throw new ArgumentNullException("objectId");
            }
            CompoundSyncObjectId compoundSyncObjectId = objectId as CompoundSyncObjectId;

            if (compoundSyncObjectId == null)
            {
                throw new ArgumentException(Strings.ErrorInvalidParameterType("objectId", typeof(CompoundSyncObjectId).Name), "objectId");
            }
            this.serviceInstance         = compoundSyncObjectId.ServiceInstanceId;
            this.ServiceInstanceIdentity = this.serviceInstance.ToString();
            this.syncObjectId            = compoundSyncObjectId.SyncObjectId;
            this.SyncObjectIdentity      = this.syncObjectId.ToString();
            this.RawIdentity             = compoundSyncObjectId.ToString();
        }
 // Token: 0x060009D3 RID: 2515 RVA: 0x000213AC File Offset: 0x0001F5AC
 public FailedMSOSyncObjectIdParameter(CompoundSyncObjectId compoundSyncObjectId) : base(compoundSyncObjectId)
 {
 }