Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin
Znav
nextObjective-C Mapping
prev.NET Compact Framework Support

Ice for .Net includes a number of utility APIs in the Ice.Util class. This appendix summarizes the contents of these APIs for your reference.

On this page:

Table of Contents
maxLevel2

Communicator Initialization Methods

Ice.Util provides a number of overloaded initialize methods that create a communicator.

Ztop

Identity Conversion

Ice.Util contains two methods to convert object identities of type Ice.Identity to and from strings.

Ztop

Per-Process Logger Methods

Ice.Util provides methods for getting and setting the per-process logger.

Ztop

Property Creation Methods

Ice.Util provides a number of overloaded createProperties methods that create property sets.

Ztop

Proxy Comparison Methods

Two methods, proxyIdentityCompare and proxyIdentityAndFacetCompare, allow you to compare object identities that are stored in proxies (either ignoring the facet or taking the facet into account).

Ztop

Stream Creation

Two methods, createInputStream and createOutputStream create streams for use with dynamic invocation.

Ztop

Version Information

The stringVersion and intVersion methods return the version of the Ice run time:

Wiki Markup
{zcode:cs}
public static string stringVersion();
public static int intVersion();
{zcode}

The stringVersion method returns the Ice version in the form <major>.<minor>.<patch>, for example, 3.4.2. For beta releases, the version is <major>.<minor>b, for example, 3.4b.

The intVersion method returns the Ice version in the form AABBCC, where AA is the major version number, BB is the minor version number, and CC is patch level, for example, 30402 for version 3.4.2. For beta releases, the patch level is set to 51 so, for example, for version 3.4b, the value is 30451.

Ztop
See Also
Zret
Znav
nextObjective-C Mapping
prev.NET Compact Framework Support