xtd - Reference Guide  0.1.0
Modern c++17/20 framework to create console, GUI and unit test applications on Windows, macOS, Linux, iOS and android.
Loading...
Searching...
No Matches
network_credential.h
Go to the documentation of this file.
1
4#pragma once
5
6#include <vector>
7#include "../core_export.h"
8#include "../object.h"
9#include "../types.h"
10#include "../ustring.h"
11#include "../security/secure_string.h"
12
14namespace xtd {
16 namespace net {
24 public:
26 network_credential() = default;
30 network_credential(const xtd::ustring& user_name, const xtd::ustring& password);
32 network_credential(const xtd::ustring& user_name, const xtd::security::secure_string& password, const xtd::ustring& domain);
34 network_credential(const xtd::ustring& user_name, const xtd::ustring& password, const xtd::ustring& domain);
35
39 network_credential& operator=(const network_credential&) = default;
40 friend std::ostream& operator <<(std::ostream& os, const network_credential& host_entry) noexcept {return os << host_entry.to_string();}
42
46 const xtd::ustring& domain() const noexcept;
50 network_credential& domain(const xtd::ustring& value) noexcept;
51
54 xtd::ustring password() const noexcept;
57 network_credential& password(const xtd::ustring& value) noexcept;
58
61 const xtd::security::secure_string& secure_password() const noexcept;
64 network_credential& secure_password(const xtd::security::secure_string& value) noexcept;
65
68 const xtd::ustring& user_name() const noexcept;
71 network_credential& user_name(const xtd::ustring& value) noexcept;
72
73 private:
74 xtd::ustring user_name_;
75 xtd::security::secure_string password_;
76 xtd::ustring domain_;
77 };
78 }
79}
Provides credentials for password-based authentication schemes such as basic, digest,...
Definition: network_credential.h:23
network_credential()=default
Initializes a new instance of the xtd::net::network_credential class.
const xtd::ustring & domain() const noexcept
Gets the domain or computer name that verifies the credentials.
network_credential(const xtd::ustring &user_name, const xtd::security::secure_string &password)
Initializes a new instance of the xtd::net::network_credential class with the specified user name and...
network_credential(const xtd::ustring &user_name, const xtd::ustring &password)
Initializes a new instance of the xtd::net::network_credential class with the specified user name and...
network_credential(const xtd::ustring &user_name, const xtd::ustring &password, const xtd::ustring &domain)
Initializes a new instance of the xtd::net::network_credential class with the specified user name,...
network_credential(const xtd::ustring &user_name, const xtd::security::secure_string &password, const xtd::ustring &domain)
Initializes a new instance of the xtd::net::network_credential class with the specified user name,...
Supports all classes in the xtd class hierarchy and provides low-level services to derived classes....
Definition: object.h:26
virtual xtd::ustring to_string() const noexcept
Returns a std::string that represents the current object.
Represents text that should be kept confidential, such as by deleting it from computer memory when no...
Definition: secure_string.h:18
Represents text as a sequence of UTF-8 code units.
Definition: ustring.h:48
#define core_export_
Define shared library export.
Definition: core_export.h:13
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition: system_report.h:17