'Declaration
<ExtensionAttribute()> <NotNullAttribute()> Public Overloads Shared Function BrowseServers( _ ByVal client As IEasyDAClient, _ ByVal location As String _ ) As ServerElementCollection
'Usage
Dim client As IEasyDAClient Dim location As String Dim value As ServerElementCollection value = IEasyDAClientExtension.BrowseServers(client, location)
[Extension()] [NotNull()] public static ServerElementCollection BrowseServers( IEasyDAClient client, string location )
[Extension()] [NotNull()] public: static ServerElementCollection^ BrowseServers( IEasyDAClient^ client, String^ location )
Parameters
- client
- The client object that will perform the operation.
This is typically the EasyDAClient object.
The value of this parameter cannot be
null
(Nothing
in Visual Basic). - location
- Name of the machine. Determines the computer to browse for OPC servers. It may be an empty string, in which case the local computer will be browsed.
The value represents a UNC or DNS computer name. Any string can be passed to this parameter (i.e. will not cause System.ArgumentException), but not all values make sense and will work when an operation using them is attempted. IPv6 addresses are normally enclosed between '[' and ']'.
The value of this parameter cannot be
null
(Nothing
in Visual Basic).
Return Value
This method never returns null
(Nothing
in Visual Basic).
The individual elements of the returned value are never null
(Nothing
in Visual Basic).