public IList<ServiceAttributeId> AttributeIds { get; }
Public ReadOnly Property AttributeIds As IList(Of ServiceAttributeId)
Get
public:
property IList<ServiceAttributeId>^ AttributeIds {
IList<ServiceAttributeId>^ get ();
}
member AttributeIds : IList<ServiceAttributeId> with get
For Each curAttr As ServiceAttribute In record
If curAttr.Id = UniversalAttributeId.ProtocolDescriptorList Then
...
Next
Note, 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()