Gets an array of UDP objects by name from the collection.

Namespace: Autodesk.Civil.DatabaseServices
Assembly: AeccDbMgd (in AeccDbMgd.dll) Version: 10.0.1111.0

Syntax

C#
public UDP[] this[
	string name
] { get; }
Visual Basic
Public ReadOnly Default Property Item ( _
	name As String _
) As UDP()
	Get
Visual C++
public:
property array<UDP^>^ default[String^ name] {
	array<UDP^>^ get (String^ name);
}

Parameters

name
Type: System..::..String

Return Value

An array of UDP objects with the specified name.

Remarks

UDPs in the collection can share the same name. This method returns all UDPs with the specified name. The combination of a UDP's name and GUID can be used as a unique identifier for an individual UDP.

See Also