22.3. .NET Binding for the C++ Messaging API Class: Address


Table 22.3. .NET Binding for the C++ Messaging API Class: Address
.NET Binding Class: Address
Language Syntax
C++ class Address
.NET public ref class Address
Constructor
C++ Address();
.NET public Address();
Constructor
C++ Address(const std::string& address);
.NET public Address(string address);
Constructor
C++ Address(const std::string& name, const std::string& subject, const qpid::types::Variant::Map& options, const std::string& type = "");
.NET public Address(string name, string subject, Dictionary<string, object> options);
.NET public Address(string name, string subject, Dictionary<string, object> options, string type);
Copy constructor
C++ Address(const Address& address);
.NET public Address(Address address);
Destructor
C++ ~Address();
.NET ~Address();
Finalizer
C++ not applicable
.NET !Address();
Copy assignment operator
C++ Address& operator=(const Address&);
.NET public Address op_Assign(Address rhs);
Property: Name
C++ const std::string& getName() const;
C++ void setName(const std::string&);
.NET public string Name { get; set; }
Property: Subject
C++ const std::string& getSubject() const;
C++ void setSubject(const std::string&);
.NET public string Subject { get; set; }
Property: Options
C++ const qpid::types::Variant::Map& getOptions() const;
C++ qpid::types::Variant::Map& getOptions();
C++ void setOptions(const qpid::types::Variant::Map&);
.NET public Dictionary<string, object> Options { get; set; }
Property: Type
C++ std::string getType() const;
C++ void setType(const std::string&);
.NET public string Type { get; set; }
Miscellaneous
C++ std::string str() const;
.NET public string ToStr();
Miscellaneous
C++ operator bool() const;
.NET not applicable
Miscellaneous
C++ bool operator !() const;
.NET not applicable
Red Hat logoGithubRedditYoutubeTwitter

Learn

Try, buy, & sell

Communities

About Red Hat Documentation

We help Red Hat users innovate and achieve their goals with our products and services with content they can trust.

Making open source more inclusive

Red Hat is committed to replacing problematic language in our code, documentation, and web properties. For more details, see the Red Hat Blog.

About Red Hat

We deliver hardened solutions that make it easier for enterprises to work across platforms and environments, from the core datacenter to the network edge.

© 2024 Red Hat, Inc.