Gets the property identified with the specified Name property value.

Namespace: BlueCieloECM.InnoCielo.Meridian.Server
Assembly: BlueCieloECM.InnoCielo.Meridian (in BlueCieloECM.InnoCielo.Meridian.dll) Version: 1.4.0.0 (1.4.40.0)

Syntax

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

Parameters

name
Type: System..::..String
The Name property value of the property to get.

Return Value

The property with the specified Name property value.

Exceptions

ExceptionCondition
System..::..ArgumentException When a property with the specified Name property value is not present in the collection.

See Also