BeginLookup(DnsRequest,AsyncCallback,Object) Method
See Also 
SourceCode.Net.Dns Namespace > AdvancedDns Class > BeginLookup Method : BeginLookup(DnsRequest,AsyncCallback,Object) Method



request
callback
object

Glossary Item Box

Syntax

Visual Basic (Declaration)  
<DnsPermissionAttribute(Action=SecurityAction.Demand, Unrestricted=False)>
Public Overloads Shared Function BeginLookup( _
   ByVal request As DnsRequest, _
   ByVal callback As AsyncCallback, _
   ByVal object As Object _
) As IAsyncResult
Visual Basic (Usage) Copy Code
Dim request As DnsRequest
Dim callback As AsyncCallback
Dim object As Object
Dim value As IAsyncResult
 
value = AdvancedDns.BeginLookup(request, callback, object)
C#  
[DnsPermission(Action=SecurityAction.Demand, Unrestricted=false)]
public static IAsyncResult BeginLookup( 
   DnsRequest request,
   AsyncCallback callback,
   object object
)
C++/CLI  
[DnsPermission(Action=SecurityAction.Demand, Unrestricted=false)]
public:
static IAsyncResult^ BeginLookup( 
   DnsRequest^ request,
   AsyncCallback^ callback,
   Object^ object
) 

Parameters

request
callback
object

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also