Namespace: P4s3TestMachine.P4s3WebSvcReference
Assembly: P4s3TestMachine (in P4s3TestMachine.exe) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
[OperationContractAttribute(Action = "http://tempuri.org/IService1/IO_FileSearch", 
	ReplyAction = "http://tempuri.org/IService1/IO_FileSearchResponse")]
Task<FileSearchResult> IO_FileSearchAsync(
	string targetDir,
	string searchStr,
	string key
)
Visual Basic
<OperationContractAttribute(Action := "http://tempuri.org/IService1/IO_FileSearch", 
	ReplyAction := "http://tempuri.org/IService1/IO_FileSearchResponse")> 
Function IO_FileSearchAsync ( 
	targetDir As String,
	searchStr As String,
	key As String
) As Task(Of FileSearchResult)
Visual C++
[OperationContractAttribute(Action = L"http://tempuri.org/IService1/IO_FileSearch", 
	ReplyAction = L"http://tempuri.org/IService1/IO_FileSearchResponse")]
Task<FileSearchResult^>^ IO_FileSearchAsync(
	String^ targetDir, 
	String^ searchStr, 
	String^ key
)

Parameters

targetDir
Type: System..::..String
searchStr
Type: System..::..String
key
Type: System..::..String

Return Value

Type: Task<(Of <(<'FileSearchResult>)>)>

See Also