| Visual Basic (Declaration) | |
|---|---|
Overloads Public Shadows ReadOnly Property Item( _ ByVal name As String _ ) As ChannelElement | |
| Visual Basic (Usage) | Copy Code |
|---|---|
Dim instance As ChannelCollection Dim name As String Dim value As ChannelElement value = instance.Item(name) | |
| C# | |
|---|---|
public new ChannelElement Item( string name ) {get;} | |
| C++/CLI | |
|---|---|
public: new property ChannelElement^ Item { ChannelElement^ get(String^ name); } | |
Parameters
- name
- The name of the LoggerElement to get.
Property Value
The channel element with the specified name.Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7
Copy Code