The AuthenticationPlugins collection object is a collection of AuthenticationPlugin objects. The AuthenticationPlugins collection object has the following properties.
Property | Read/Write | Description |
Count | R | Returns the number of AuthenticationPlugin objects in the collection. |
Item | R | Indicates a specific element of the collection object. |
Example
The following example code displays the description of each AuthenticationPlugin object in the collection in message boxes:
For i=1 to CInt( NSUnicastMgr1.AuthenticationPlugins.Count )
MsgBox NSUnicastMgr1.AuthenticationPlugins.Item( i-1 ).Description
Next
See Also
© 1996-1998 Microsoft Corporation. All rights reserved.