public IList<ServiceAttributeId> AttributeIds { get; }Public ReadOnly Property AttributeIds As IList(Of ServiceAttributeId)
Getpublic:
property IList<ServiceAttributeId>^ AttributeIds {
IList<ServiceAttributeId>^ get ();
}member AttributeIds : IList<ServiceAttributeId> with getFor Each curAttr As ServiceAttribute In record
If curAttr.Id = UniversalAttributeId.ProtocolDescriptorList Then
...
NextNote, for NETCFv1 this returns an instance of the non-Generic list IList.
IList<ServiceAttributeId> ids = record.GetAttributeIds();Dim ids As IList(Of ServiceAttributeId) = record.GetAttributeIds()Dim ids As IList = record.GetAttributeIds()