API:System.Net.URLClient.TCredentialsStorage.TCredential

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

    TCredential = record
      AuthTarget: TAuthTargetType;
      Realm: string;
      URL: string; // Scope? Comment it...
      UserName: string;
      Password: string;
      constructor Create(AnAuthTarget: TAuthTargetType; const ARealm, AURL, AUserName, APassword: string);
      function IsEmpty: Boolean;
    end;

C++

struct DECLSPEC_DRECORD TCredential
{
public:
    TAuthTargetType AuthTarget;
    System::UnicodeString Realm;
    System::UnicodeString URL;
    System::UnicodeString UserName;
    System::UnicodeString Password;
    __fastcall TCredential(TAuthTargetType AnAuthTarget, const System::UnicodeString ARealm, const System::UnicodeString AURL, const System::UnicodeString AUserName, const System::UnicodeString APassword);
    bool __fastcall IsEmpty();
    TCredential() {}
};

Properties

Type Visibility Source Unit Parent
record
struct
public
System.Net.URLClient.pas
System.Net.URLClient.hpp
System.Net.URLClient TCredentialsStorage

Description

Embarcadero Technologies does not currently have any additional information.