IntelligenceX

API Reference

Enum

OpenAICompatibleHttpAuthMode

Namespace IntelligenceX.OpenAI.CompatibleHttp
Assembly IntelligenceX
Base Enum
Implements
IComparable ISpanFormattable IFormattable IConvertible
Modifiers sealed

Authentication mode for OpenAI-compatible HTTP transports.

Inheritance

  • Enum
  • OpenAICompatibleHttpAuthMode

Usage

This type appears in these public API surfaces even when no hand-authored example is attached directly to the page.

Values

public const OpenAICompatibleHttpAuthMode None #

No Authorization header is sent.

Value: 0
public const OpenAICompatibleHttpAuthMode Bearer #

Sends Authorization: Bearer ... using ApiKey.

Value: 1
public const OpenAICompatibleHttpAuthMode Basic #

Sends Authorization: Basic ... using BasicUsername and BasicPassword.

Value: 2