File Information
Library: XSD/Types
Package: WSDL
Header: Poco/XSD/Types/BindingProperties.h
Description
Member Summary
Types Aliases
Map
using Map = std::map < std::string, std::string >;
Constructors
BindingProperties
Creates the BindingProperties.
Destructor
~BindingProperties
Destroys the BindingProperties.
Member Functions
get
const std::string & get(
const std::string & name
) const;
Returns the value of the property with the given name. Throws a Poco::NotFoundException if the property has not been set.
get
const std::string & get(
const std::string & name,
const std::string & deflt
) const;
Returns the valuie of the property with the given name, or the given default value if the property has not been set.
has
bool has(
const std::string & name
) const;
Returns true if a property with the given name has been defined.
set
void set(
const std::string & name,
const std::string & value
);
Sets a binding property.