コード例 #1
0
 public static IIncomingAttachments IncomingAttachments <TSource>(this ResolveFieldContext <TSource> context)
 {
     Guard.AgainstNull(nameof(context), context);
     return(context.GetAttachmentContext().Incoming);
 }
コード例 #2
0
 public static IOutgoingAttachments OutgoingAttachments(this ResolveFieldContext context)
 {
     Guard.AgainstNull(nameof(context), context);
     return(context.GetAttachmentContext().Outgoing);
 }