Exemplo n.º 1
0
 public static IIncomingAttachments IncomingAttachments <TSource>(this ResolveFieldContext <TSource> context)
 {
     Guard.AgainstNull(nameof(context), context);
     return(context.GetAttachmentContext().Incoming);
 }
Exemplo n.º 2
0
 public static IOutgoingAttachments OutgoingAttachments(this ResolveFieldContext context)
 {
     Guard.AgainstNull(nameof(context), context);
     return(context.GetAttachmentContext().Outgoing);
 }