Exemplo n.º 1
0
 public async Task DeleteComponentsForNonLeafEmbeddedTerm(JObject content, IGraphDeleteContext context)
 {
     _embeddedContentItemsGraphSyncer.IsNonLeafEmbeddedTerm = true;
     await _embeddedContentItemsGraphSyncer.DeleteComponents((JArray?)content[ContainerName], context);
 }
 public override Task DeleteComponents(JObject content, IGraphDeleteContext context)
 {
     return(_embeddedContentItemsGraphSyncer.DeleteComponents((JArray?)content[ContainerName], context));
 }
Exemplo n.º 3
0
 public virtual Task DeleteComponents(JObject content, IGraphDeleteContext context)
 {
     return(Task.CompletedTask);
 }
 public override Task AllowDelete(JObject content, IGraphDeleteContext context, IAllowSync allowSync)
 {
     return(_embeddedContentItemsGraphSyncer.AllowDelete((JArray?)content[ContainerName], context, allowSync));
 }
Exemplo n.º 5
0
 public virtual Task AllowDelete(JObject content, IGraphDeleteContext context, IAllowSync allowSync)
 {
     return(Task.CompletedTask);
 }