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/AddPage", 
	ReplyAction = "http://tempuri.org/IService1/AddPageResponse")]
Task<bool> AddPageAsync(
	string pageName,
	string pageDesc,
	string pageUrl,
	string key
)
Visual Basic
<OperationContractAttribute(Action := "http://tempuri.org/IService1/AddPage", 
	ReplyAction := "http://tempuri.org/IService1/AddPageResponse")> 
Function AddPageAsync ( 
	pageName As String,
	pageDesc As String,
	pageUrl As String,
	key As String
) As Task(Of Boolean)
Visual C++
[OperationContractAttribute(Action = L"http://tempuri.org/IService1/AddPage", 
	ReplyAction = L"http://tempuri.org/IService1/AddPageResponse")]
Task<bool>^ AddPageAsync(
	String^ pageName, 
	String^ pageDesc, 
	String^ pageUrl, 
	String^ key
)

Parameters

pageName
Type: System..::..String
pageDesc
Type: System..::..String
pageUrl
Type: System..::..String
key
Type: System..::..String

Return Value

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

See Also