Files
Beam/Beam.Exceptions/Exceptions.Designer.cs
qwsdcvghyu89 2958a26e4f Refactor downloaders to use generic options and unify logic
Replaces specialized binary and HTML downloaders with a generic, options-driven UnitDownloader and UnitFragmentDownloader pattern. Introduces UnitDownloaderOptions and builder classes for flexible configuration, updates interfaces and method signatures to support progress reporting, and removes redundant binary-specific classes. Updates Playwright and Stealth downloaders to use the new generic base, and adds improved error handling and reporting. Also updates dependency versions and makes minor API consistency improvements across the Fluent and Models layers.
2025-09-29 21:27:56 +10:00

189 lines
8.0 KiB
C#

//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace Beam.Exceptions {
using System;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
public class Exceptions {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal Exceptions() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
public static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Beam.Exceptions.Exceptions", typeof(Exceptions).Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
public static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to The state of the builder is invalid..
/// </summary>
public static string fluent_invalid_state {
get {
return ResourceManager.GetString("fluent_invalid_state", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to A type conversion from &apos;{0}&apos; to &apos;{1}&apos; has failed, indicating an invalid state..
/// </summary>
public static string fluent_type_conversion_failure {
get {
return ResourceManager.GetString("fluent_type_conversion_failure", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The builder state &apos;{0}&apos; points to an unsupported unit downloader..
/// </summary>
public static string fluent_unsupported_pattern {
get {
return ResourceManager.GetString("fluent_unsupported_pattern", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The transformer type &apos;{0}&apos; is unsupported by this fluent pathway. Consider manually instantiating DownloadContext..
/// </summary>
public static string fluent_unsupported_transformer {
get {
return ResourceManager.GetString("fluent_unsupported_transformer", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to A fragment is locked when it should be free; failed to obtain updater..
/// </summary>
public static string fragment_locked {
get {
return ResourceManager.GetString("fragment_locked", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The argument at index &apos;{0}&apos; with name &apos;{1}&apos; is not marked optional and is missing..
/// </summary>
public static string link_builder_argument_missing {
get {
return ResourceManager.GetString("link_builder_argument_missing", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The flag &apos;{0}&apos; is incompatible with the flag(s) &apos;{1}&apos;.
/// </summary>
public static string link_builder_incompatible_flag {
get {
return ResourceManager.GetString("link_builder_incompatible_flag", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The query flag is only allowed on the last segment; found on segment index &apos;{0}&apos;.
/// </summary>
public static string link_builder_query_only_at_last {
get {
return ResourceManager.GetString("link_builder_query_only_at_last", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The stimulus must be an integer; got &apos;{0}&apos;.
/// </summary>
public static string num_state_changer_stimulus_must_be_int {
get {
return ResourceManager.GetString("num_state_changer_stimulus_must_be_int", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to There must be at least one state in resource definition..
/// </summary>
public static string resource_definition_invalid_states_count {
get {
return ResourceManager.GetString("resource_definition_invalid_states_count", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Encountered an error while changing state.
/// </summary>
public static string state_change_error {
get {
return ResourceManager.GetString("state_change_error", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Could not open a filestream to a non-existant directory &apos;{0}&apos;..
/// </summary>
public static string unit_download_directory_nonexistant {
get {
return ResourceManager.GetString("unit_download_directory_nonexistant", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The memory stream was created with an invisible inner byte array..
/// </summary>
public static string unit_download_invalid_memory_stream {
get {
return ResourceManager.GetString("unit_download_invalid_memory_stream", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to The base unit downloader class only supports RawType&apos;s of string and ByteDocument..
/// </summary>
public static string unit_downloader_limited_support {
get {
return ResourceManager.GetString("unit_downloader_limited_support", resourceCulture);
}
}
}
}