Pack200.IPacker.Properties Method

Definition

Get the set of this engine's properties.

[Android.Runtime.Register("properties", "()Ljava/util/SortedMap;", "GetPropertiesHandler:Java.Util.Jar.Pack200/IPackerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]
public System.Collections.Generic.IDictionary<string,string>? Properties ();
[<Android.Runtime.Register("properties", "()Ljava/util/SortedMap;", "GetPropertiesHandler:Java.Util.Jar.Pack200/IPackerInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]
abstract member Properties : unit -> System.Collections.Generic.IDictionary<string, string>

Returns

A sorted association of property key strings to property values.

Attributes

Remarks

Get the set of this engine's properties. This set is a "live view", so that changing its contents immediately affects the Packer engine, and changes from the engine (such as progress indications) are immediately visible in the map.

The property map may contain pre-defined implementation specific and default properties. Users are encouraged to read the information and fully understand the implications, before modifying pre-existing properties.

Implementation specific properties are prefixed with a package name associated with the implementor, beginning with com. or a similar prefix. All property names beginning with pack. and unpack. are reserved for use by this API.

Unknown properties may be ignored or rejected with an unspecified error, and invalid entries may cause an unspecified error to be thrown.

The returned map implements all optional SortedMap operations

Java documentation for java.util.jar.Pack200.Packer.properties().

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to