GraphQL.Attachments
Advanced tools
Sorry, the diff of this file is not supported yet
| <?xml version="1.0"?> | ||
| <doc> | ||
| <assembly> | ||
| <name>GraphQL.Attachments</name> | ||
| </assembly> | ||
| <members> | ||
| <member name="T:GraphQL.AttachmentExecutionResult"> | ||
| <summary> | ||
| The result of a query execution by <see cref="M:GraphQL.AttachmentsExtensions.ExecuteWithAttachments(GraphQL.IDocumentExecuter,GraphQL.ExecutionOptions,GraphQL.Attachments.IIncomingAttachments)"/>. | ||
| </summary> | ||
| </member> | ||
| <member name="M:GraphQL.AttachmentExecutionResult.#ctor(GraphQL.ExecutionResult,GraphQL.Attachments.IOutgoingAttachments)"> | ||
| <summary> | ||
| The result of a query execution by <see cref="M:GraphQL.AttachmentsExtensions.ExecuteWithAttachments(GraphQL.IDocumentExecuter,GraphQL.ExecutionOptions,GraphQL.Attachments.IIncomingAttachments)"/>. | ||
| </summary> | ||
| </member> | ||
| <member name="T:GraphQL.AttachmentsExtensions"> | ||
| <summary> | ||
| Extensions to GraphQL to enable Attachments. | ||
| </summary> | ||
| </member> | ||
| <member name="M:GraphQL.AttachmentsExtensions.ExecuteWithAttachments(GraphQL.IDocumentExecuter,GraphQL.ExecutionOptions,GraphQL.Attachments.IIncomingAttachments)"> | ||
| <summary> | ||
| Executes a GraphQL query and makes attachments available. | ||
| </summary> | ||
| </member> | ||
| <member name="P:GraphQL.Attachments.AttachmentContext.Incoming"> | ||
| <summary> | ||
| The <see cref="T:GraphQL.Attachments.IIncomingAttachments"/> to pass into the query execution. Retrieved from <see cref="M:GraphQL.Attachments.HttpReaderWriter.ReadGet(Microsoft.AspNetCore.Http.HttpRequest)"/> or <see cref="M:GraphQL.Attachments.HttpReaderWriter.ReadPost(Microsoft.AspNetCore.Http.HttpRequest,System.Threading.CancellationToken)"/>. | ||
| </summary> | ||
| </member> | ||
| <member name="P:GraphQL.Attachments.AttachmentContext.Outgoing"> | ||
| <summary> | ||
| The resulting <see cref="T:GraphQL.Attachments.IOutgoingAttachments"/> that will be appended to the outgoing response via <see cref="M:GraphQL.Attachments.HttpReaderWriter.WriteResult(Microsoft.AspNetCore.Http.HttpResponse,GraphQL.AttachmentExecutionResult,System.Threading.CancellationToken)"/>. | ||
| </summary> | ||
| </member> | ||
| <member name="M:GraphQL.Attachments.AttachmentContext.DisposeAsync"> | ||
| <summary> | ||
| <see cref="M:System.IAsyncDisposable.DisposeAsync"/>. | ||
| </summary> | ||
| </member> | ||
| <member name="T:GraphQL.Attachments.AttachmentStream"> | ||
| <summary> | ||
| Wraps a <see cref="T:System.IO.Stream"/> to provide extra information when reading. | ||
| </summary> | ||
| </member> | ||
| <member name="M:GraphQL.Attachments.AttachmentStream.#ctor(System.String,System.IO.Stream,System.Nullable{System.Int64},Microsoft.AspNetCore.Http.IHeaderDictionary)"> | ||
| <summary> | ||
| Initialises a new instance of <see cref="T:GraphQL.Attachments.AttachmentStream"/>. | ||
| </summary> | ||
| <param name="name">The name of the attachment.</param> | ||
| <param name="inner">The <see cref="T:System.IO.Stream"/> to wrap.</param> | ||
| <param name="length">The length of <paramref name="inner"/>.</param> | ||
| <param name="metadata">The attachment metadata.</param> | ||
| </member> | ||
| <member name="F:GraphQL.Attachments.AttachmentStream.Metadata"> | ||
| <summary> | ||
| The attachment metadata. | ||
| </summary> | ||
| </member> | ||
| <member name="T:GraphQL.Attachments.IOutgoingAttachments"> | ||
| <summary> | ||
| Provides access to write attachments. | ||
| </summary> | ||
| </member> | ||
| <member name="P:GraphQL.Attachments.IOutgoingAttachments.HasPendingAttachments"> | ||
| <summary> | ||
| Returns <code>true</code> if there are pending attachments to be written in the current outgoing pipeline. | ||
| </summary> | ||
| </member> | ||
| <member name="P:GraphQL.Attachments.IOutgoingAttachments.Names"> | ||
| <summary> | ||
| All attachment names for the current outgoing pipeline. | ||
| </summary> | ||
| </member> | ||
| <member name="M:GraphQL.Attachments.IOutgoingAttachments.AddStream``1(System.String,System.Func{System.Threading.CancellationToken,System.Threading.Tasks.Task{``0}},System.Action,System.Net.Http.Headers.HttpContentHeaders)"> | ||
| <summary> | ||
| Add an attachment with <paramref name="name"/> to the current outgoing pipeline. | ||
| </summary> | ||
| </member> | ||
| <member name="M:GraphQL.Attachments.IOutgoingAttachments.AddStream(System.String,System.Func{System.IO.Stream},System.Action,System.Net.Http.Headers.HttpContentHeaders)"> | ||
| <summary> | ||
| Add an attachment with <paramref name="name"/> to the current outgoing pipeline. | ||
| </summary> | ||
| </member> | ||
| <member name="M:GraphQL.Attachments.IOutgoingAttachments.AddStream(System.String,System.IO.Stream,System.Action,System.Net.Http.Headers.HttpContentHeaders)"> | ||
| <summary> | ||
| Add an attachment with <paramref name="name"/> to the current outgoing pipeline. | ||
| </summary> | ||
| </member> | ||
| <member name="M:GraphQL.Attachments.IOutgoingAttachments.AddStream``1(System.Func{System.Threading.CancellationToken,System.Threading.Tasks.Task{``0}},System.Action,System.Net.Http.Headers.HttpContentHeaders)"> | ||
| <summary> | ||
| Add an attachment with the default name of <see cref="F:System.String.Empty"/> to the current outgoing pipeline. | ||
| </summary> | ||
| </member> | ||
| <member name="M:GraphQL.Attachments.IOutgoingAttachments.AddStream(System.Func{System.IO.Stream},System.Action,System.Net.Http.Headers.HttpContentHeaders)"> | ||
| <summary> | ||
| Add an attachment with the default name of <see cref="F:System.String.Empty"/> to the current outgoing pipeline. | ||
| </summary> | ||
| </member> | ||
| <member name="M:GraphQL.Attachments.IOutgoingAttachments.AddStream(System.IO.Stream,System.Action,System.Net.Http.Headers.HttpContentHeaders)"> | ||
| <summary> | ||
| Add an attachment with the default name of <see cref="F:System.String.Empty"/> to the current outgoing pipeline. | ||
| </summary> | ||
| </member> | ||
| <member name="M:GraphQL.Attachments.IOutgoingAttachments.AddBytes(System.String,System.Func{System.Byte[]},System.Action,System.Net.Http.Headers.HttpContentHeaders)"> | ||
| <summary> | ||
| Add an attachment with <paramref name="name"/> to the current outgoing pipeline. | ||
| </summary> | ||
| <remarks> | ||
| This should only be used when the data size is know to be small as it causes the full size of the attachment to be allocated in memory. | ||
| </remarks> | ||
| </member> | ||
| <member name="M:GraphQL.Attachments.IOutgoingAttachments.AddBytes(System.String,System.Byte[],System.Action,System.Net.Http.Headers.HttpContentHeaders)"> | ||
| <summary> | ||
| Add an attachment with <paramref name="name"/> to the current outgoing pipeline. | ||
| </summary> | ||
| <remarks> | ||
| This should only be used when the data size is know to be small as it causes the full size of the attachment to be allocated in memory. | ||
| </remarks> | ||
| </member> | ||
| <member name="M:GraphQL.Attachments.IOutgoingAttachments.AddBytes(System.Func{System.Threading.CancellationToken,System.Threading.Tasks.Task{System.Byte[]}},System.Action,System.Net.Http.Headers.HttpContentHeaders)"> | ||
| <summary> | ||
| Add an attachment with the default name of <see cref="F:System.String.Empty"/> to the current outgoing pipeline. | ||
| </summary> | ||
| <remarks> | ||
| This should only be used when the data size is know to be small as it causes the full size of the attachment to be allocated in memory. | ||
| </remarks> | ||
| </member> | ||
| <member name="M:GraphQL.Attachments.IOutgoingAttachments.AddBytes(System.String,System.Func{System.Threading.CancellationToken,System.Threading.Tasks.Task{System.Byte[]}},System.Action,System.Net.Http.Headers.HttpContentHeaders)"> | ||
| <summary> | ||
| Add an attachment with <paramref name="name"/> to the current outgoing pipeline. | ||
| </summary> | ||
| <remarks> | ||
| This should only be used when the data size is know to be small as it causes the full size of the attachment to be allocated in memory. | ||
| </remarks> | ||
| </member> | ||
| <member name="M:GraphQL.Attachments.IOutgoingAttachments.AddBytes(System.Func{System.Byte[]},System.Action,System.Net.Http.Headers.HttpContentHeaders)"> | ||
| <summary> | ||
| Add an attachment with the default name of <see cref="F:System.String.Empty"/> to the current outgoing pipeline. | ||
| </summary> | ||
| <remarks> | ||
| This should only be used when the data size is know to be small as it causes the full size of the attachment to be allocated in memory. | ||
| </remarks> | ||
| </member> | ||
| <member name="M:GraphQL.Attachments.IOutgoingAttachments.AddBytes(System.Byte[],System.Action,System.Net.Http.Headers.HttpContentHeaders)"> | ||
| <summary> | ||
| Save an attachment with the default name of <see cref="F:System.String.Empty"/>. | ||
| </summary> | ||
| <remarks> | ||
| This should only be used when the data size is know to be small as it causes the full size of the attachment to be allocated in memory. | ||
| </remarks> | ||
| </member> | ||
| <member name="M:GraphQL.Attachments.IOutgoingAttachments.AddString(System.String,System.Func{System.String},System.Action,System.Net.Http.Headers.HttpContentHeaders)"> | ||
| <summary> | ||
| Add an attachment with <paramref name="name"/> to the current outgoing pipeline. | ||
| </summary> | ||
| <remarks> | ||
| This should only be used when the data size is know to be small as it causes the full size of the attachment to be allocated in memory. | ||
| </remarks> | ||
| </member> | ||
| <member name="M:GraphQL.Attachments.IOutgoingAttachments.AddString(System.String,System.String,System.Action,System.Net.Http.Headers.HttpContentHeaders)"> | ||
| <summary> | ||
| Add an attachment with <paramref name="name"/> to the current outgoing pipeline. | ||
| </summary> | ||
| <remarks> | ||
| This should only be used when the data size is know to be small as it causes the full size of the attachment to be allocated in memory. | ||
| </remarks> | ||
| </member> | ||
| <member name="M:GraphQL.Attachments.IOutgoingAttachments.AddString(System.Func{System.Threading.CancellationToken,System.Threading.Tasks.Task{System.String}},System.Action,System.Net.Http.Headers.HttpContentHeaders)"> | ||
| <summary> | ||
| Add an attachment with the default name of <see cref="F:System.String.Empty"/> to the current outgoing pipeline. | ||
| </summary> | ||
| <remarks> | ||
| This should only be used when the data size is know to be small as it causes the full size of the attachment to be allocated in memory. | ||
| </remarks> | ||
| </member> | ||
| <member name="M:GraphQL.Attachments.IOutgoingAttachments.AddString(System.String,System.Func{System.Threading.CancellationToken,System.Threading.Tasks.Task{System.String}},System.Action,System.Net.Http.Headers.HttpContentHeaders)"> | ||
| <summary> | ||
| Add an attachment with <paramref name="name"/> to the current outgoing pipeline. | ||
| </summary> | ||
| <remarks> | ||
| This should only be used when the data size is know to be small as it causes the full size of the attachment to be allocated in memory. | ||
| </remarks> | ||
| </member> | ||
| <member name="M:GraphQL.Attachments.IOutgoingAttachments.AddString(System.Func{System.String},System.Action,System.Net.Http.Headers.HttpContentHeaders)"> | ||
| <summary> | ||
| Add an attachment with the default name of <see cref="F:System.String.Empty"/> to the current outgoing pipeline. | ||
| </summary> | ||
| <remarks> | ||
| This should only be used when the data size is know to be small as it causes the full size of the attachment to be allocated in memory. | ||
| </remarks> | ||
| </member> | ||
| <member name="M:GraphQL.Attachments.IOutgoingAttachments.AddString(System.String,System.Action,System.Net.Http.Headers.HttpContentHeaders)"> | ||
| <summary> | ||
| Save an attachment with the default name of <see cref="F:System.String.Empty"/>. | ||
| </summary> | ||
| <remarks> | ||
| This should only be used when the data size is know to be small as it causes the full size of the attachment to be allocated in memory. | ||
| </remarks> | ||
| </member> | ||
| <member name="T:GraphQL.Attachments.HttpReaderWriter"> | ||
| <summary> | ||
| Handles parsing a <see cref="T:Microsoft.AspNetCore.Http.HttpRequest"/> into the corresponding query, <see cref="T:GraphQL.Inputs"/>, operation, and <see cref="T:GraphQL.Attachments.IIncomingAttachments"/>. | ||
| Handles writing a <see cref="T:GraphQL.AttachmentExecutionResult"/> to a <see cref="T:Microsoft.AspNetCore.Http.HttpResponse"/>. | ||
| </summary> | ||
| </member> | ||
| <member name="M:GraphQL.Attachments.HttpReaderWriter.ReadGet(Microsoft.AspNetCore.Http.HttpRequest)"> | ||
| <summary> | ||
| Parse a <see cref="T:Microsoft.AspNetCore.Http.HttpRequest"/> Get into the corresponding query, <see cref="T:GraphQL.Inputs"/>, and operation. | ||
| </summary> | ||
| </member> | ||
| <member name="M:GraphQL.Attachments.HttpReaderWriter.ReadPost(Microsoft.AspNetCore.Http.HttpRequest,System.Threading.CancellationToken)"> | ||
| <summary> | ||
| Parse a <see cref="T:Microsoft.AspNetCore.Http.HttpRequest"/> Post into the corresponding query, <see cref="T:GraphQL.Inputs"/>, operation, and <see cref="T:GraphQL.Attachments.IIncomingAttachments"/>. | ||
| </summary> | ||
| </member> | ||
| <member name="M:GraphQL.Attachments.HttpReaderWriter.WriteResult(Microsoft.AspNetCore.Http.HttpResponse,GraphQL.AttachmentExecutionResult,System.Threading.CancellationToken)"> | ||
| <summary> | ||
| Writes <paramref name="result"/> to <paramref name="response"/>. | ||
| </summary> | ||
| </member> | ||
| </members> | ||
| </doc> |
Sorry, the diff of this file is not supported yet
| { | ||
| "files": [ | ||
| { | ||
| "fileName": "./[Content_Types].xml", | ||
| "SPDXID": "SPDXRef-File---Content-Types-.xml-00B73AE8E3BF0C894FEF0DD91BEADEC40A6484D5", | ||
| "fileName": "./_rels/.rels", | ||
| "SPDXID": "SPDXRef-File---rels-.rels-2BCCDC75D648DE7DEED5F7C2187A3FD9C4433DF1", | ||
| "checksums": [ | ||
| { | ||
| "algorithm": "SHA256", | ||
| "checksumValue": "d9f372d8f2820bcf3543cfd114c21b789374da9d42e23506da1d97f97752fa58" | ||
| "checksumValue": "a7985f48f75239813c69bc87689b94aaba6a1477bd96e7663a2744f14ccb506f" | ||
| }, | ||
| { | ||
| "algorithm": "SHA1", | ||
| "checksumValue": "00b73ae8e3bf0c894fef0dd91beadec40a6484d5" | ||
| "checksumValue": "2bccdc75d648de7deed5f7c2187a3fd9c4433df1" | ||
| } | ||
@@ -23,12 +23,12 @@ ], | ||
| { | ||
| "fileName": "./_rels/.rels", | ||
| "SPDXID": "SPDXRef-File---rels-.rels-5F4700D9A1C84F2EEAF49F8E47C4E4B78292A3C8", | ||
| "fileName": "./lib/net10.0/GraphQL.Attachments.dll", | ||
| "SPDXID": "SPDXRef-File--lib-net10.0-GraphQL.Attachments.dll-CF46E4FD8FAFF1A1DF1DECFC3240BABF2B0D4A05", | ||
| "checksums": [ | ||
| { | ||
| "algorithm": "SHA256", | ||
| "checksumValue": "b5eddac06fa7a9a82392f3575fc074152f95059e0a16530b76fa9ee0f5502536" | ||
| "checksumValue": "ccd491345fbd09782d9c4e70b3d885848f55925b8811366b34e9d1d1edeb54f5" | ||
| }, | ||
| { | ||
| "algorithm": "SHA1", | ||
| "checksumValue": "5f4700d9a1c84f2eeaf49f8e47c4e4b78292a3c8" | ||
| "checksumValue": "cf46e4fd8faff1a1df1decfc3240babf2b0d4a05" | ||
| } | ||
@@ -62,12 +62,12 @@ ], | ||
| { | ||
| "fileName": "./lib/net9.0/GraphQL.Attachments.dll", | ||
| "SPDXID": "SPDXRef-File--lib-net9.0-GraphQL.Attachments.dll-C20C370AA4BF1829C3D6B54283FF76E18CE7A926", | ||
| "fileName": "./GraphQL.Attachments.nuspec", | ||
| "SPDXID": "SPDXRef-File--GraphQL.Attachments.nuspec-0EC28D0A459C1A5846FB26AA27C78E9D7C38829B", | ||
| "checksums": [ | ||
| { | ||
| "algorithm": "SHA256", | ||
| "checksumValue": "7f99ba47fa199b288465efa856e2037a23fc1d92d8715f5bf8a9b8d022617128" | ||
| "checksumValue": "04a149a51399376043863d45f9560cd632a44a47aa18dde7822f2e56f4ab5eae" | ||
| }, | ||
| { | ||
| "algorithm": "SHA1", | ||
| "checksumValue": "c20c370aa4bf1829c3d6b54283ff76e18ce7a926" | ||
| "checksumValue": "0ec28d0a459c1a5846fb26aa27c78e9d7c38829b" | ||
| } | ||
@@ -82,12 +82,12 @@ ], | ||
| { | ||
| "fileName": "./GraphQL.Attachments.nuspec", | ||
| "SPDXID": "SPDXRef-File--GraphQL.Attachments.nuspec-A11D732B641B79913DA3131B6A8A9E560B88343E", | ||
| "fileName": "./package/services/metadata/core-properties/094fbe8ba6094777b8fe778827009e4d.psmdcp", | ||
| "SPDXID": "SPDXRef-File--package-services-metadata-core-properties-094fbe8ba6094777b8fe778827009e4d.psmdcp-FF7F6EB89AA3F85E95CCF48F56E4C9EDB3F9EF97", | ||
| "checksums": [ | ||
| { | ||
| "algorithm": "SHA256", | ||
| "checksumValue": "1977efca4c17ac756989769dea5465f7b8d90375082d37275d9b0e42162cc19c" | ||
| "checksumValue": "9115e47f5bf03035641d5375c70800333c80c08facb502ece397bd3806fc37b4" | ||
| }, | ||
| { | ||
| "algorithm": "SHA1", | ||
| "checksumValue": "a11d732b641b79913da3131b6a8a9e560b88343e" | ||
| "checksumValue": "ff7f6eb89aa3f85e95ccf48f56e4c9edb3f9ef97" | ||
| } | ||
@@ -102,12 +102,12 @@ ], | ||
| { | ||
| "fileName": "./lib/net9.0/GraphQL.Attachments.xml", | ||
| "SPDXID": "SPDXRef-File--lib-net9.0-GraphQL.Attachments.xml-0B12F4ECBC94F05E4F47ED825D39637323FEB8AC", | ||
| "fileName": "./[Content_Types].xml", | ||
| "SPDXID": "SPDXRef-File---Content-Types-.xml-9B8E8004D26D1DCF537621461BCF8691D1BFACC2", | ||
| "checksums": [ | ||
| { | ||
| "algorithm": "SHA256", | ||
| "checksumValue": "8af1e53e85c0d623e09c51da6105010e9b0aa938094bc68c704aa3e51077de23" | ||
| "checksumValue": "f3d5a96c16efbbca747f277e18f0cdee7e326edbf94b438eb4f4020fbd90d530" | ||
| }, | ||
| { | ||
| "algorithm": "SHA1", | ||
| "checksumValue": "0b12f4ecbc94f05e4f47ed825d39637323feb8ac" | ||
| "checksumValue": "9b8e8004d26d1dcf537621461bcf8691d1bfacc2" | ||
| } | ||
@@ -122,12 +122,12 @@ ], | ||
| { | ||
| "fileName": "./package/services/metadata/core-properties/46a4054011c740f4af83ab2fac670e96.psmdcp", | ||
| "SPDXID": "SPDXRef-File--package-services-metadata-core-properties-46a4054011c740f4af83ab2fac670e96.psmdcp-18EB0C2882CBF7F27EA43C87F9C940C0EAC1CAB9", | ||
| "fileName": "./lib/net10.0/GraphQL.Attachments.xml", | ||
| "SPDXID": "SPDXRef-File--lib-net10.0-GraphQL.Attachments.xml-0B12F4ECBC94F05E4F47ED825D39637323FEB8AC", | ||
| "checksums": [ | ||
| { | ||
| "algorithm": "SHA256", | ||
| "checksumValue": "8ee7caadf2cbba0abc619b30486a45910ea3aa98080714202a8af4ac112100c6" | ||
| "checksumValue": "8af1e53e85c0d623e09c51da6105010e9b0aa938094bc68c704aa3e51077de23" | ||
| }, | ||
| { | ||
| "algorithm": "SHA1", | ||
| "checksumValue": "18eb0c2882cbf7f27ea43c87f9c940c0eac1cab9" | ||
| "checksumValue": "0b12f4ecbc94f05e4f47ed825d39637323feb8ac" | ||
| } | ||
@@ -144,22 +144,4 @@ ], | ||
| { | ||
| "name": "System.Text.Json", | ||
| "SPDXID": "SPDXRef-Package-7A75FFA131C409C46F344A30595D2515726F95BF2EDE9F7B9B987D0F2EBCBF8B", | ||
| "downloadLocation": "NOASSERTION", | ||
| "filesAnalyzed": false, | ||
| "licenseConcluded": "NOASSERTION", | ||
| "licenseDeclared": "NOASSERTION", | ||
| "copyrightText": "NOASSERTION", | ||
| "versionInfo": "9.0.9", | ||
| "externalRefs": [ | ||
| { | ||
| "referenceCategory": "PACKAGE-MANAGER", | ||
| "referenceType": "purl", | ||
| "referenceLocator": "pkg:nuget/System.Text.Json@9.0.9" | ||
| } | ||
| ], | ||
| "supplier": "NOASSERTION" | ||
| }, | ||
| { | ||
| "name": "GraphQL.Attachments", | ||
| "SPDXID": "SPDXRef-Package-F9D7B2CA2C4909091EF55D9854340C3830AA6E8410C2B63722BEF915D851D370", | ||
| "SPDXID": "SPDXRef-Package-B1B8DE6588ACEE9449B695F89126380E9A10B3120EB8E7C2CA24AE9071D9D979", | ||
| "downloadLocation": "NOASSERTION", | ||
@@ -170,3 +152,3 @@ "filesAnalyzed": false, | ||
| "copyrightText": "NOASSERTION", | ||
| "versionInfo": "8.2.0", | ||
| "versionInfo": "8.2.1", | ||
| "externalRefs": [ | ||
@@ -176,3 +158,3 @@ { | ||
| "referenceType": "purl", | ||
| "referenceLocator": "pkg:nuget/GraphQL.Attachments@8.2.0" | ||
| "referenceLocator": "pkg:nuget/GraphQL.Attachments@8.2.1" | ||
| } | ||
@@ -183,4 +165,4 @@ ], | ||
| { | ||
| "name": "GraphQL.Analyzers", | ||
| "SPDXID": "SPDXRef-Package-FED3D2CC72AF02BAB48EBDA23D98A76DAAE063635FABF6FFA56EBC066D4B65A0", | ||
| "name": "ProjectDefaults", | ||
| "SPDXID": "SPDXRef-Package-1B343F542CA44952A916B26305AC5C6B51ED3481112C7915A8ABB73E468C9745", | ||
| "downloadLocation": "NOASSERTION", | ||
@@ -191,3 +173,3 @@ "filesAnalyzed": false, | ||
| "copyrightText": "NOASSERTION", | ||
| "versionInfo": "8.5.0", | ||
| "versionInfo": "1.0.163", | ||
| "externalRefs": [ | ||
@@ -197,3 +179,3 @@ { | ||
| "referenceType": "purl", | ||
| "referenceLocator": "pkg:nuget/GraphQL.Analyzers@8.5.0" | ||
| "referenceLocator": "pkg:nuget/ProjectDefaults@1.0.163" | ||
| } | ||
@@ -222,4 +204,4 @@ ], | ||
| { | ||
| "name": "Microsoft.Sbom.Targets", | ||
| "SPDXID": "SPDXRef-Package-603D524FAA44D9DF3F06D770BA4FAD22C54AFEC447EABE3242CBE11B099AA4FC", | ||
| "name": "GraphQL", | ||
| "SPDXID": "SPDXRef-Package-36973D16AD534B91B3F98B47EC9A602462A3FD88EE8F4E45E32F8B82F08CD789", | ||
| "downloadLocation": "NOASSERTION", | ||
@@ -230,3 +212,3 @@ "filesAnalyzed": false, | ||
| "copyrightText": "NOASSERTION", | ||
| "versionInfo": "4.1.2", | ||
| "versionInfo": "8.8.0", | ||
| "externalRefs": [ | ||
@@ -236,3 +218,3 @@ { | ||
| "referenceType": "purl", | ||
| "referenceLocator": "pkg:nuget/Microsoft.Sbom.Targets@4.1.2" | ||
| "referenceLocator": "pkg:nuget/GraphQL@8.8.0" | ||
| } | ||
@@ -243,4 +225,4 @@ ], | ||
| { | ||
| "name": "ProjectDefaults", | ||
| "SPDXID": "SPDXRef-Package-6CCE371535AC048C36BE36F4166E4DED524D1725E10D68A15A3CC21F1A3B502F", | ||
| "name": "Microsoft.Sbom.Targets", | ||
| "SPDXID": "SPDXRef-Package-AC95C493DA66851ABA326CD07858B3AC7FB6AC3C0AAF08792AFCE9B1908A6C56", | ||
| "downloadLocation": "NOASSERTION", | ||
@@ -251,3 +233,3 @@ "filesAnalyzed": false, | ||
| "copyrightText": "NOASSERTION", | ||
| "versionInfo": "1.0.157", | ||
| "versionInfo": "4.1.4", | ||
| "externalRefs": [ | ||
@@ -257,3 +239,3 @@ { | ||
| "referenceType": "purl", | ||
| "referenceLocator": "pkg:nuget/ProjectDefaults@1.0.157" | ||
| "referenceLocator": "pkg:nuget/Microsoft.Sbom.Targets@4.1.4" | ||
| } | ||
@@ -264,4 +246,4 @@ ], | ||
| { | ||
| "name": "GraphQL", | ||
| "SPDXID": "SPDXRef-Package-4360FA1C0E8357323452604CF55BA94415003C969708E72192E5F06EE43E0232", | ||
| "name": "GraphQL.Analyzers", | ||
| "SPDXID": "SPDXRef-Package-61805B685DF74A168A48EFE19104B636585C0E74292064CF066C1349BF1D0A76", | ||
| "downloadLocation": "NOASSERTION", | ||
@@ -272,3 +254,3 @@ "filesAnalyzed": false, | ||
| "copyrightText": "NOASSERTION", | ||
| "versionInfo": "8.5.0", | ||
| "versionInfo": "8.8.0", | ||
| "externalRefs": [ | ||
@@ -278,3 +260,3 @@ { | ||
| "referenceType": "purl", | ||
| "referenceLocator": "pkg:nuget/GraphQL@8.5.0" | ||
| "referenceLocator": "pkg:nuget/GraphQL.Analyzers@8.8.0" | ||
| } | ||
@@ -289,3 +271,3 @@ ], | ||
| "packageVerificationCode": { | ||
| "packageVerificationCodeValue": "b04035d18a0affa7ac16e793b7d98836bba7ea44" | ||
| "packageVerificationCodeValue": "e8a59dbb48721a66ae06a48abbc16b66db04d7dd" | ||
| }, | ||
@@ -299,3 +281,3 @@ "filesAnalyzed": true, | ||
| "copyrightText": "NOASSERTION", | ||
| "versionInfo": "8.2.0", | ||
| "versionInfo": "8.2.1", | ||
| "externalRefs": [ | ||
@@ -305,3 +287,3 @@ { | ||
| "referenceType": "purl", | ||
| "referenceLocator": "pkg:swid/GraphQL.Attachments/spdx.org/GraphQL.Attachments@8.2.0?tag_id=c45b51ee-4494-4e78-9aa6-38ce2b05d5bf" | ||
| "referenceLocator": "pkg:swid/GraphQL.Attachments/spdx.org/GraphQL.Attachments@8.2.1?tag_id=ff2ade4d-858f-4297-bb76-d7d236bd0f80" | ||
| } | ||
@@ -311,9 +293,9 @@ ], | ||
| "hasFiles": [ | ||
| "SPDXRef-File--package-services-metadata-core-properties-46a4054011c740f4af83ab2fac670e96.psmdcp-18EB0C2882CBF7F27EA43C87F9C940C0EAC1CAB9", | ||
| "SPDXRef-File---Content-Types-.xml-00B73AE8E3BF0C894FEF0DD91BEADEC40A6484D5", | ||
| "SPDXRef-File--GraphQL.Attachments.nuspec-A11D732B641B79913DA3131B6A8A9E560B88343E", | ||
| "SPDXRef-File--lib-net9.0-GraphQL.Attachments.dll-C20C370AA4BF1829C3D6B54283FF76E18CE7A926", | ||
| "SPDXRef-File---rels-.rels-5F4700D9A1C84F2EEAF49F8E47C4E4B78292A3C8", | ||
| "SPDXRef-File--lib-net9.0-GraphQL.Attachments.xml-0B12F4ECBC94F05E4F47ED825D39637323FEB8AC", | ||
| "SPDXRef-File--icon.png-041B1D07E7F284FC371CA08C278BE97EC5A93ED7" | ||
| "SPDXRef-File--package-services-metadata-core-properties-094fbe8ba6094777b8fe778827009e4d.psmdcp-FF7F6EB89AA3F85E95CCF48F56E4C9EDB3F9EF97", | ||
| "SPDXRef-File--icon.png-041B1D07E7F284FC371CA08C278BE97EC5A93ED7", | ||
| "SPDXRef-File---rels-.rels-2BCCDC75D648DE7DEED5F7C2187A3FD9C4433DF1", | ||
| "SPDXRef-File--lib-net10.0-GraphQL.Attachments.xml-0B12F4ECBC94F05E4F47ED825D39637323FEB8AC", | ||
| "SPDXRef-File---Content-Types-.xml-9B8E8004D26D1DCF537621461BCF8691D1BFACC2", | ||
| "SPDXRef-File--GraphQL.Attachments.nuspec-0EC28D0A459C1A5846FB26AA27C78E9D7C38829B", | ||
| "SPDXRef-File--lib-net10.0-GraphQL.Attachments.dll-CF46E4FD8FAFF1A1DF1DECFC3240BABF2B0D4A05" | ||
| ] | ||
@@ -325,9 +307,9 @@ } | ||
| { | ||
| "relationshipType": "DESCRIBES", | ||
| "relatedSpdxElement": "SPDXRef-RootPackage", | ||
| "spdxElementId": "SPDXRef-DOCUMENT" | ||
| "relationshipType": "DEPENDS_ON", | ||
| "relatedSpdxElement": "SPDXRef-Package-61805B685DF74A168A48EFE19104B636585C0E74292064CF066C1349BF1D0A76", | ||
| "spdxElementId": "SPDXRef-Package-36973D16AD534B91B3F98B47EC9A602462A3FD88EE8F4E45E32F8B82F08CD789" | ||
| }, | ||
| { | ||
| "relationshipType": "DEPENDS_ON", | ||
| "relatedSpdxElement": "SPDXRef-Package-6CCE371535AC048C36BE36F4166E4DED524D1725E10D68A15A3CC21F1A3B502F", | ||
| "relatedSpdxElement": "SPDXRef-Package-AC95C493DA66851ABA326CD07858B3AC7FB6AC3C0AAF08792AFCE9B1908A6C56", | ||
| "spdxElementId": "SPDXRef-RootPackage" | ||
@@ -337,13 +319,13 @@ }, | ||
| "relationshipType": "DEPENDS_ON", | ||
| "relatedSpdxElement": "SPDXRef-Package-FED3D2CC72AF02BAB48EBDA23D98A76DAAE063635FABF6FFA56EBC066D4B65A0", | ||
| "spdxElementId": "SPDXRef-Package-4360FA1C0E8357323452604CF55BA94415003C969708E72192E5F06EE43E0232" | ||
| "relatedSpdxElement": "SPDXRef-Package-36973D16AD534B91B3F98B47EC9A602462A3FD88EE8F4E45E32F8B82F08CD789", | ||
| "spdxElementId": "SPDXRef-RootPackage" | ||
| }, | ||
| { | ||
| "relationshipType": "DEPENDS_ON", | ||
| "relatedSpdxElement": "SPDXRef-Package-F9D7B2CA2C4909091EF55D9854340C3830AA6E8410C2B63722BEF915D851D370", | ||
| "spdxElementId": "SPDXRef-RootPackage" | ||
| "relatedSpdxElement": "SPDXRef-Package-F877F13C9DCB15DDCB7249975D1F3588DAD60ACC83A186898A5C8E33436552DC", | ||
| "spdxElementId": "SPDXRef-Package-36973D16AD534B91B3F98B47EC9A602462A3FD88EE8F4E45E32F8B82F08CD789" | ||
| }, | ||
| { | ||
| "relationshipType": "DEPENDS_ON", | ||
| "relatedSpdxElement": "SPDXRef-Package-4360FA1C0E8357323452604CF55BA94415003C969708E72192E5F06EE43E0232", | ||
| "relatedSpdxElement": "SPDXRef-Package-B1B8DE6588ACEE9449B695F89126380E9A10B3120EB8E7C2CA24AE9071D9D979", | ||
| "spdxElementId": "SPDXRef-RootPackage" | ||
@@ -353,14 +335,9 @@ }, | ||
| "relationshipType": "DEPENDS_ON", | ||
| "relatedSpdxElement": "SPDXRef-Package-603D524FAA44D9DF3F06D770BA4FAD22C54AFEC447EABE3242CBE11B099AA4FC", | ||
| "relatedSpdxElement": "SPDXRef-Package-1B343F542CA44952A916B26305AC5C6B51ED3481112C7915A8ABB73E468C9745", | ||
| "spdxElementId": "SPDXRef-RootPackage" | ||
| }, | ||
| { | ||
| "relationshipType": "DEPENDS_ON", | ||
| "relatedSpdxElement": "SPDXRef-Package-F877F13C9DCB15DDCB7249975D1F3588DAD60ACC83A186898A5C8E33436552DC", | ||
| "spdxElementId": "SPDXRef-Package-4360FA1C0E8357323452604CF55BA94415003C969708E72192E5F06EE43E0232" | ||
| }, | ||
| { | ||
| "relationshipType": "DEPENDS_ON", | ||
| "relatedSpdxElement": "SPDXRef-Package-7A75FFA131C409C46F344A30595D2515726F95BF2EDE9F7B9B987D0F2EBCBF8B", | ||
| "spdxElementId": "SPDXRef-RootPackage" | ||
| "relationshipType": "DESCRIBES", | ||
| "relatedSpdxElement": "SPDXRef-RootPackage", | ||
| "spdxElementId": "SPDXRef-DOCUMENT" | ||
| } | ||
@@ -371,9 +348,9 @@ ], | ||
| "SPDXID": "SPDXRef-DOCUMENT", | ||
| "name": "GraphQL.Attachments 8.2.0", | ||
| "documentNamespace": "http://spdx.org/spdxdocs/GraphQL.Attachments/GraphQL.Attachments/8.2.0/Qof-aKw7g0q1qUhb9grk_A", | ||
| "name": "GraphQL.Attachments 8.2.1", | ||
| "documentNamespace": "http://spdx.org/spdxdocs/GraphQL.Attachments/GraphQL.Attachments/8.2.1/RXmXRlwgxkycvTQ5xFMHGQ", | ||
| "creationInfo": { | ||
| "created": "2025-09-11T04:39:40Z", | ||
| "created": "2025-12-09T04:16:16Z", | ||
| "creators": [ | ||
| "Organization: GraphQL.Attachments", | ||
| "Tool: Microsoft.SBOMTool-4.1.2" | ||
| "Tool: Microsoft.SBOMTool-4.1.4" | ||
| ] | ||
@@ -380,0 +357,0 @@ }, |
@@ -6,5 +6,5 @@ <?xml version="1.0" encoding="utf-8"?> | ||
| <Default Extension="dll" ContentType="application/octet" /> | ||
| <Default Extension="nuspec" ContentType="application/octet" /> | ||
| <Default Extension="png" ContentType="application/octet" /> | ||
| <Default Extension="xml" ContentType="application/octet" /> | ||
| <Default Extension="png" ContentType="application/octet" /> | ||
| <Default Extension="nuspec" ContentType="application/octet" /> | ||
| </Types> |
@@ -5,3 +5,3 @@ <?xml version="1.0" encoding="utf-8"?> | ||
| <id>GraphQL.Attachments</id> | ||
| <version>8.2.0</version> | ||
| <version>8.2.1</version> | ||
| <authors>https://github.com/SimonCropp/GraphQL.Attachments/graphs/contributors</authors> | ||
@@ -15,11 +15,10 @@ <license type="expression">MIT</license> | ||
| <tags>GraphQL, Attachments</tags> | ||
| <repository type="git" url="https://github.com/SimonCropp/GraphQL.Attachments.git" commit="8bd782fde545bdc98743622a5a793f979fb4b9f6" /> | ||
| <repository type="git" url="https://github.com/SimonCropp/GraphQL.Attachments.git" commit="50294a97b532db28352e68b3bbda9a528d78a6c2" /> | ||
| <dependencies> | ||
| <group targetFramework="net9.0"> | ||
| <dependency id="GraphQL" version="8.5.0" exclude="Build,Analyzers" /> | ||
| <dependency id="System.Text.Json" version="9.0.9" exclude="Build,Analyzers" /> | ||
| <group targetFramework="net10.0"> | ||
| <dependency id="GraphQL" version="8.8.0" exclude="Build,Analyzers" /> | ||
| </group> | ||
| </dependencies> | ||
| <frameworkReferences> | ||
| <group targetFramework="net9.0"> | ||
| <group targetFramework="net10.0"> | ||
| <frameworkReference name="Microsoft.AspNetCore.App" /> | ||
@@ -26,0 +25,0 @@ </group> |
Sorry, the diff of this file is not supported yet
| <?xml version="1.0"?> | ||
| <doc> | ||
| <assembly> | ||
| <name>GraphQL.Attachments</name> | ||
| </assembly> | ||
| <members> | ||
| <member name="T:GraphQL.AttachmentExecutionResult"> | ||
| <summary> | ||
| The result of a query execution by <see cref="M:GraphQL.AttachmentsExtensions.ExecuteWithAttachments(GraphQL.IDocumentExecuter,GraphQL.ExecutionOptions,GraphQL.Attachments.IIncomingAttachments)"/>. | ||
| </summary> | ||
| </member> | ||
| <member name="M:GraphQL.AttachmentExecutionResult.#ctor(GraphQL.ExecutionResult,GraphQL.Attachments.IOutgoingAttachments)"> | ||
| <summary> | ||
| The result of a query execution by <see cref="M:GraphQL.AttachmentsExtensions.ExecuteWithAttachments(GraphQL.IDocumentExecuter,GraphQL.ExecutionOptions,GraphQL.Attachments.IIncomingAttachments)"/>. | ||
| </summary> | ||
| </member> | ||
| <member name="T:GraphQL.AttachmentsExtensions"> | ||
| <summary> | ||
| Extensions to GraphQL to enable Attachments. | ||
| </summary> | ||
| </member> | ||
| <member name="M:GraphQL.AttachmentsExtensions.ExecuteWithAttachments(GraphQL.IDocumentExecuter,GraphQL.ExecutionOptions,GraphQL.Attachments.IIncomingAttachments)"> | ||
| <summary> | ||
| Executes a GraphQL query and makes attachments available. | ||
| </summary> | ||
| </member> | ||
| <member name="P:GraphQL.Attachments.AttachmentContext.Incoming"> | ||
| <summary> | ||
| The <see cref="T:GraphQL.Attachments.IIncomingAttachments"/> to pass into the query execution. Retrieved from <see cref="M:GraphQL.Attachments.HttpReaderWriter.ReadGet(Microsoft.AspNetCore.Http.HttpRequest)"/> or <see cref="M:GraphQL.Attachments.HttpReaderWriter.ReadPost(Microsoft.AspNetCore.Http.HttpRequest,System.Threading.CancellationToken)"/>. | ||
| </summary> | ||
| </member> | ||
| <member name="P:GraphQL.Attachments.AttachmentContext.Outgoing"> | ||
| <summary> | ||
| The resulting <see cref="T:GraphQL.Attachments.IOutgoingAttachments"/> that will be appended to the outgoing response via <see cref="M:GraphQL.Attachments.HttpReaderWriter.WriteResult(Microsoft.AspNetCore.Http.HttpResponse,GraphQL.AttachmentExecutionResult,System.Threading.CancellationToken)"/>. | ||
| </summary> | ||
| </member> | ||
| <member name="M:GraphQL.Attachments.AttachmentContext.DisposeAsync"> | ||
| <summary> | ||
| <see cref="M:System.IAsyncDisposable.DisposeAsync"/>. | ||
| </summary> | ||
| </member> | ||
| <member name="T:GraphQL.Attachments.AttachmentStream"> | ||
| <summary> | ||
| Wraps a <see cref="T:System.IO.Stream"/> to provide extra information when reading. | ||
| </summary> | ||
| </member> | ||
| <member name="M:GraphQL.Attachments.AttachmentStream.#ctor(System.String,System.IO.Stream,System.Nullable{System.Int64},Microsoft.AspNetCore.Http.IHeaderDictionary)"> | ||
| <summary> | ||
| Initialises a new instance of <see cref="T:GraphQL.Attachments.AttachmentStream"/>. | ||
| </summary> | ||
| <param name="name">The name of the attachment.</param> | ||
| <param name="inner">The <see cref="T:System.IO.Stream"/> to wrap.</param> | ||
| <param name="length">The length of <paramref name="inner"/>.</param> | ||
| <param name="metadata">The attachment metadata.</param> | ||
| </member> | ||
| <member name="F:GraphQL.Attachments.AttachmentStream.Metadata"> | ||
| <summary> | ||
| The attachment metadata. | ||
| </summary> | ||
| </member> | ||
| <member name="T:GraphQL.Attachments.IOutgoingAttachments"> | ||
| <summary> | ||
| Provides access to write attachments. | ||
| </summary> | ||
| </member> | ||
| <member name="P:GraphQL.Attachments.IOutgoingAttachments.HasPendingAttachments"> | ||
| <summary> | ||
| Returns <code>true</code> if there are pending attachments to be written in the current outgoing pipeline. | ||
| </summary> | ||
| </member> | ||
| <member name="P:GraphQL.Attachments.IOutgoingAttachments.Names"> | ||
| <summary> | ||
| All attachment names for the current outgoing pipeline. | ||
| </summary> | ||
| </member> | ||
| <member name="M:GraphQL.Attachments.IOutgoingAttachments.AddStream``1(System.String,System.Func{System.Threading.CancellationToken,System.Threading.Tasks.Task{``0}},System.Action,System.Net.Http.Headers.HttpContentHeaders)"> | ||
| <summary> | ||
| Add an attachment with <paramref name="name"/> to the current outgoing pipeline. | ||
| </summary> | ||
| </member> | ||
| <member name="M:GraphQL.Attachments.IOutgoingAttachments.AddStream(System.String,System.Func{System.IO.Stream},System.Action,System.Net.Http.Headers.HttpContentHeaders)"> | ||
| <summary> | ||
| Add an attachment with <paramref name="name"/> to the current outgoing pipeline. | ||
| </summary> | ||
| </member> | ||
| <member name="M:GraphQL.Attachments.IOutgoingAttachments.AddStream(System.String,System.IO.Stream,System.Action,System.Net.Http.Headers.HttpContentHeaders)"> | ||
| <summary> | ||
| Add an attachment with <paramref name="name"/> to the current outgoing pipeline. | ||
| </summary> | ||
| </member> | ||
| <member name="M:GraphQL.Attachments.IOutgoingAttachments.AddStream``1(System.Func{System.Threading.CancellationToken,System.Threading.Tasks.Task{``0}},System.Action,System.Net.Http.Headers.HttpContentHeaders)"> | ||
| <summary> | ||
| Add an attachment with the default name of <see cref="F:System.String.Empty"/> to the current outgoing pipeline. | ||
| </summary> | ||
| </member> | ||
| <member name="M:GraphQL.Attachments.IOutgoingAttachments.AddStream(System.Func{System.IO.Stream},System.Action,System.Net.Http.Headers.HttpContentHeaders)"> | ||
| <summary> | ||
| Add an attachment with the default name of <see cref="F:System.String.Empty"/> to the current outgoing pipeline. | ||
| </summary> | ||
| </member> | ||
| <member name="M:GraphQL.Attachments.IOutgoingAttachments.AddStream(System.IO.Stream,System.Action,System.Net.Http.Headers.HttpContentHeaders)"> | ||
| <summary> | ||
| Add an attachment with the default name of <see cref="F:System.String.Empty"/> to the current outgoing pipeline. | ||
| </summary> | ||
| </member> | ||
| <member name="M:GraphQL.Attachments.IOutgoingAttachments.AddBytes(System.String,System.Func{System.Byte[]},System.Action,System.Net.Http.Headers.HttpContentHeaders)"> | ||
| <summary> | ||
| Add an attachment with <paramref name="name"/> to the current outgoing pipeline. | ||
| </summary> | ||
| <remarks> | ||
| This should only be used when the data size is know to be small as it causes the full size of the attachment to be allocated in memory. | ||
| </remarks> | ||
| </member> | ||
| <member name="M:GraphQL.Attachments.IOutgoingAttachments.AddBytes(System.String,System.Byte[],System.Action,System.Net.Http.Headers.HttpContentHeaders)"> | ||
| <summary> | ||
| Add an attachment with <paramref name="name"/> to the current outgoing pipeline. | ||
| </summary> | ||
| <remarks> | ||
| This should only be used when the data size is know to be small as it causes the full size of the attachment to be allocated in memory. | ||
| </remarks> | ||
| </member> | ||
| <member name="M:GraphQL.Attachments.IOutgoingAttachments.AddBytes(System.Func{System.Threading.CancellationToken,System.Threading.Tasks.Task{System.Byte[]}},System.Action,System.Net.Http.Headers.HttpContentHeaders)"> | ||
| <summary> | ||
| Add an attachment with the default name of <see cref="F:System.String.Empty"/> to the current outgoing pipeline. | ||
| </summary> | ||
| <remarks> | ||
| This should only be used when the data size is know to be small as it causes the full size of the attachment to be allocated in memory. | ||
| </remarks> | ||
| </member> | ||
| <member name="M:GraphQL.Attachments.IOutgoingAttachments.AddBytes(System.String,System.Func{System.Threading.CancellationToken,System.Threading.Tasks.Task{System.Byte[]}},System.Action,System.Net.Http.Headers.HttpContentHeaders)"> | ||
| <summary> | ||
| Add an attachment with <paramref name="name"/> to the current outgoing pipeline. | ||
| </summary> | ||
| <remarks> | ||
| This should only be used when the data size is know to be small as it causes the full size of the attachment to be allocated in memory. | ||
| </remarks> | ||
| </member> | ||
| <member name="M:GraphQL.Attachments.IOutgoingAttachments.AddBytes(System.Func{System.Byte[]},System.Action,System.Net.Http.Headers.HttpContentHeaders)"> | ||
| <summary> | ||
| Add an attachment with the default name of <see cref="F:System.String.Empty"/> to the current outgoing pipeline. | ||
| </summary> | ||
| <remarks> | ||
| This should only be used when the data size is know to be small as it causes the full size of the attachment to be allocated in memory. | ||
| </remarks> | ||
| </member> | ||
| <member name="M:GraphQL.Attachments.IOutgoingAttachments.AddBytes(System.Byte[],System.Action,System.Net.Http.Headers.HttpContentHeaders)"> | ||
| <summary> | ||
| Save an attachment with the default name of <see cref="F:System.String.Empty"/>. | ||
| </summary> | ||
| <remarks> | ||
| This should only be used when the data size is know to be small as it causes the full size of the attachment to be allocated in memory. | ||
| </remarks> | ||
| </member> | ||
| <member name="M:GraphQL.Attachments.IOutgoingAttachments.AddString(System.String,System.Func{System.String},System.Action,System.Net.Http.Headers.HttpContentHeaders)"> | ||
| <summary> | ||
| Add an attachment with <paramref name="name"/> to the current outgoing pipeline. | ||
| </summary> | ||
| <remarks> | ||
| This should only be used when the data size is know to be small as it causes the full size of the attachment to be allocated in memory. | ||
| </remarks> | ||
| </member> | ||
| <member name="M:GraphQL.Attachments.IOutgoingAttachments.AddString(System.String,System.String,System.Action,System.Net.Http.Headers.HttpContentHeaders)"> | ||
| <summary> | ||
| Add an attachment with <paramref name="name"/> to the current outgoing pipeline. | ||
| </summary> | ||
| <remarks> | ||
| This should only be used when the data size is know to be small as it causes the full size of the attachment to be allocated in memory. | ||
| </remarks> | ||
| </member> | ||
| <member name="M:GraphQL.Attachments.IOutgoingAttachments.AddString(System.Func{System.Threading.CancellationToken,System.Threading.Tasks.Task{System.String}},System.Action,System.Net.Http.Headers.HttpContentHeaders)"> | ||
| <summary> | ||
| Add an attachment with the default name of <see cref="F:System.String.Empty"/> to the current outgoing pipeline. | ||
| </summary> | ||
| <remarks> | ||
| This should only be used when the data size is know to be small as it causes the full size of the attachment to be allocated in memory. | ||
| </remarks> | ||
| </member> | ||
| <member name="M:GraphQL.Attachments.IOutgoingAttachments.AddString(System.String,System.Func{System.Threading.CancellationToken,System.Threading.Tasks.Task{System.String}},System.Action,System.Net.Http.Headers.HttpContentHeaders)"> | ||
| <summary> | ||
| Add an attachment with <paramref name="name"/> to the current outgoing pipeline. | ||
| </summary> | ||
| <remarks> | ||
| This should only be used when the data size is know to be small as it causes the full size of the attachment to be allocated in memory. | ||
| </remarks> | ||
| </member> | ||
| <member name="M:GraphQL.Attachments.IOutgoingAttachments.AddString(System.Func{System.String},System.Action,System.Net.Http.Headers.HttpContentHeaders)"> | ||
| <summary> | ||
| Add an attachment with the default name of <see cref="F:System.String.Empty"/> to the current outgoing pipeline. | ||
| </summary> | ||
| <remarks> | ||
| This should only be used when the data size is know to be small as it causes the full size of the attachment to be allocated in memory. | ||
| </remarks> | ||
| </member> | ||
| <member name="M:GraphQL.Attachments.IOutgoingAttachments.AddString(System.String,System.Action,System.Net.Http.Headers.HttpContentHeaders)"> | ||
| <summary> | ||
| Save an attachment with the default name of <see cref="F:System.String.Empty"/>. | ||
| </summary> | ||
| <remarks> | ||
| This should only be used when the data size is know to be small as it causes the full size of the attachment to be allocated in memory. | ||
| </remarks> | ||
| </member> | ||
| <member name="T:GraphQL.Attachments.HttpReaderWriter"> | ||
| <summary> | ||
| Handles parsing a <see cref="T:Microsoft.AspNetCore.Http.HttpRequest"/> into the corresponding query, <see cref="T:GraphQL.Inputs"/>, operation, and <see cref="T:GraphQL.Attachments.IIncomingAttachments"/>. | ||
| Handles writing a <see cref="T:GraphQL.AttachmentExecutionResult"/> to a <see cref="T:Microsoft.AspNetCore.Http.HttpResponse"/>. | ||
| </summary> | ||
| </member> | ||
| <member name="M:GraphQL.Attachments.HttpReaderWriter.ReadGet(Microsoft.AspNetCore.Http.HttpRequest)"> | ||
| <summary> | ||
| Parse a <see cref="T:Microsoft.AspNetCore.Http.HttpRequest"/> Get into the corresponding query, <see cref="T:GraphQL.Inputs"/>, and operation. | ||
| </summary> | ||
| </member> | ||
| <member name="M:GraphQL.Attachments.HttpReaderWriter.ReadPost(Microsoft.AspNetCore.Http.HttpRequest,System.Threading.CancellationToken)"> | ||
| <summary> | ||
| Parse a <see cref="T:Microsoft.AspNetCore.Http.HttpRequest"/> Post into the corresponding query, <see cref="T:GraphQL.Inputs"/>, operation, and <see cref="T:GraphQL.Attachments.IIncomingAttachments"/>. | ||
| </summary> | ||
| </member> | ||
| <member name="M:GraphQL.Attachments.HttpReaderWriter.WriteResult(Microsoft.AspNetCore.Http.HttpResponse,GraphQL.AttachmentExecutionResult,System.Threading.CancellationToken)"> | ||
| <summary> | ||
| Writes <paramref name="result"/> to <paramref name="response"/>. | ||
| </summary> | ||
| </member> | ||
| </members> | ||
| </doc> |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet