Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/libs/Firecrawl/Generated/Firecrawl.AutoSDKUploadFile.g.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ namespace Firecrawl
/// <see cref="global::System.Net.Http.MultipartFormDataContent"/> assemblies or
/// repeated MIME-type guessing tables. The content is exposed as either a
/// <see cref="global::System.IO.Stream"/> (preferred for large files) or a
/// <see cref="global::System.ReadOnlyMemory{byte}"/> (preferred for in-memory uploads).
/// <see cref="global::System.ReadOnlyMemory{T}"/> (preferred for in-memory uploads).
///
/// Construct via the static factory methods <see cref="FromBytes"/>,
/// Construct via the static factory methods <see cref="FromBytes(string, byte[], string)"/>,
/// <see cref="FromStream"/>, or <see cref="FromPath"/>.
/// </summary>
public sealed class AutoSDKUploadFile : global::System.IDisposable
Expand Down Expand Up @@ -128,7 +128,7 @@ public static AutoSDKUploadFile FromBytes(
}

/// <summary>
/// Constructs an upload from a <see cref="global::System.ReadOnlyMemory{byte}"/> payload. Useful when
/// Constructs an upload from a <see cref="global::System.ReadOnlyMemory{T}"/> payload. Useful when
/// the caller already has a slice of a larger buffer.
/// </summary>
public static AutoSDKUploadFile FromBytes(
Expand Down