public static IIncomingAttachments IncomingAttachments <TSource>(this IResolveFieldContext <TSource> context) { Guard.AgainstNull(nameof(context), context); return(context.GetAttachmentContext().Incoming); }
public static IOutgoingAttachments OutgoingAttachments <TSource>(this IResolveFieldContext <TSource> context) { return(context.GetAttachmentContext().Outgoing); }
public static IOutgoingAttachments OutgoingAttachments(this IResolveFieldContext context) { Guard.AgainstNull(nameof(context), context); return(context.GetAttachmentContext().Outgoing); }
public static IIncomingAttachments IncomingAttachments <TSource>(this IResolveFieldContext <TSource> context) { return(context.GetAttachmentContext().Incoming); }