Exemple #1
0
        private PutCustomPropertyOperation(string propertyName, PropertyTypeId typeId, object value, string customTypeId)
            : base(propertyName, PropertyBatchOperationKind.PutCustom)
        {
            Requires.Argument <string>("customTypeId", customTypeId).NotNullOrEmpty();

            this.PropertyType  = typeId;
            this.PropertyValue = value;
            this.CustomTypeId  = customTypeId;
        }
Exemple #2
0
 private PutPropertyOperation(string propertyName, PropertyTypeId typeId, object value)
     : base(propertyName, PropertyBatchOperationKind.Put)
 {
     this.PropertyType  = typeId;
     this.PropertyValue = value;
 }