This document is archived and information here might be outdated.  Recommended version.


INameFactory.UnpackageNames Method (ArcObjects .NET 10.5 SDK)
ArcObjects Library Reference (System)  

INameFactory.UnpackageNames Method

Unpackages the given VARIANT into a set of Name objects (typically for responding to a drop operation).

[Visual Basic .NET]
Public Function UnpackageNames ( _
    ByRef bytesArray As Object _
) As IEnumName
[C#]
public IEnumName UnpackageNames (
    ref object bytesArray
);
[C++]
HRESULT UnpackageNames(
  VARIANT* bytesArray,
  IEnumName** names
);
[C++]

Parameters bytesArray [in] bytesArray is a parameter of type VARIANT names [out, retval]
names is a parameter of type IEnumName

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Description

The UnpackageNames method unpackages the given VARIANT into a set of Name objects. This is typically used to unpackage data objects when sresponding to a custom drop operation.  

See Also

INameFactory Interface