Java.Util.Properties Members

The members of Java.Util.Properties are listed below.

See Also: Inherited members from Java.Lang.Object

Public Constructors

Constructs a new Properties object.
Constructs a new Properties object using the specified default Properties.

Protected Constructors

A constructor used when creating managed representations of JNI objects; called by the runtime.

Protected Properties

DefaultsProperties. The default values for keys not found in this Properties instance.
[read-only]
override
ThresholdClassIntPtr. This API supports the Mono for Android infrastructure and is not intended to be used directly from your code.
[read-only]
override
ThresholdTypeType. This API supports the Mono for Android infrastructure and is not intended to be used directly from your code.

Public Methods

GetProperty(string) : string
Searches for the property with the specified name.
GetProperty(string, string) : string
Searches for the property with the specified name.
List(Java.IO.PrintStream)
Lists the mappings in this Properties to out in a human-readable form.
List(Java.IO.PrintWriter)
Lists the mappings in this Properties to out in a human-readable form.
Load(Java.IO.Reader)
Loads properties from the specified Reader.
Load(System.IO.Stream)
Loads properties from the specified InputStream, assumed to be ISO-8859-1.
LoadFromXML(System.IO.Stream)
Loads the properties from an InputStream containing the properties in XML form.
PropertyNames() : IEnumeration
Returns all of the property names (keys) in this Properties object.
Save(System.IO.Stream, string)
Saves the mappings in this Properties to the specified OutputStream, putting the specified comment at the beginning.
SetProperty(string, string) : Java.Lang.Object
Maps the specified key to the specified value.
Store(Java.IO.Writer, string)
Stores the mappings in this Properties object to out, putting the specified comment at the beginning.
Store(System.IO.Stream, string)
Stores properties to the specified OutputStream, using ISO-8859-1.
StoreToXML(System.IO.Stream, string)
Writes all properties stored in this instance into the OutputStream in XML representation.
StoreToXML(System.IO.Stream, string, string)
Writes all properties stored in this instance into the OutputStream in XML representation.
StringPropertyNames() : ICollection<string>
Returns those property names (keys) in this Properties object for which both key and value are strings.