XMLDA.NET Reference
EndBrowse Method
See Also  Send Feedback
xmldanet.xmlda Namespace > OpcXmlDA Class : EndBrowse Method

asyncResult
The reference to the pending asynchronous request to wait for.
ContinuationPoint
If this is a secondary Browse request, the BrowseResponse might have returned a Continuation Point where the Browse request the server can restart the browse operation.
This is an Opaque value that the server creates. The Server may support a Continuation Point. A Continuation Point is desirable for requests that are larger than MaxItemsReturned. When using continuation point, clients must pass the same mask and filter for all subsequent Browse calls. Failing to do so will return error E_INVALIDCONTINUATIONPOINT.
Elements
An arbitrary number of elements which match the request.
Errors
An array of OPCError elements with the description of the errors occured in this server call. Errors are only present if Items contain result codes.
MoreElements
The server will set MoreElements to True if there are more elements than MaxItemsReturned.

Glossary Item Box

XML-DA method to asynchronously browse an XML-DA or OPC-DA server.

Syntax

Visual Basic (Usage)Copy Code
Dim instance As OpcXmlDA
Dim asyncResult As IAsyncResult
Dim ContinuationPoint As String
Dim Elements As BrowseElement()
Dim Errors As OPCError()
Dim MoreElements As Boolean
Dim value As ReplyBase
 
value = instance.EndBrowse(asyncResult, ContinuationPoint, Elements, Errors, MoreElements)
C# 
public ReplyBase EndBrowse( 
   IAsyncResult asyncResult,
   out string ContinuationPoint,
   out BrowseElement[] Elements,
   out OPCError[] Errors,
   out bool MoreElements
)

Parameters

asyncResult
The reference to the pending asynchronous request to wait for.
ContinuationPoint
If this is a secondary Browse request, the BrowseResponse might have returned a Continuation Point where the Browse request the server can restart the browse operation.
This is an Opaque value that the server creates. The Server may support a Continuation Point. A Continuation Point is desirable for requests that are larger than MaxItemsReturned. When using continuation point, clients must pass the same mask and filter for all subsequent Browse calls. Failing to do so will return error E_INVALIDCONTINUATIONPOINT.
Elements
An arbitrary number of elements which match the request.
Errors
An array of OPCError elements with the description of the errors occured in this server call. Errors are only present if Items contain result codes.
MoreElements
The server will set MoreElements to True if there are more elements than MaxItemsReturned.

Return Value

Container of information that represents the basic information for most responses.

Requirements

Target Platforms:Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows 7, Windows Server 2008 family

>

See Also

© 2002-2012 Advosol Inc. All Rights Reserved.