[OperationContractAttribute(Name="DeletePage", Action="DeletePage")]
[WebInvokeAttribute(BodyStyle=WebMessageBodyStyle.WrappedRequest,
IsBodyStyleSetExplicitly=true,
IsRequestFormatSetExplicitly=true,
IsResponseFormatSetExplicitly=true,
Method="POST",
RequestFormat=WebMessageFormat.Json,
ResponseFormat=WebMessageFormat.Json)]
void DeletePage(
string ,
int ,
object
)
'Declaration
<OperationContractAttribute(Name="DeletePage", Action="DeletePage")>
<WebInvokeAttribute(BodyStyle=WebMessageBodyStyle.WrappedRequest,
IsBodyStyleSetExplicitly=True,
IsRequestFormatSetExplicitly=True,
IsResponseFormatSetExplicitly=True,
Method="POST",
RequestFormat=WebMessageFormat.Json,
ResponseFormat=WebMessageFormat.Json)>
Sub DeletePage( _
ByVal As String, _
ByVal As Integer, _
ByVal As Object _
)
'Usage
Dim instance As ITwainService
Dim id As String
Dim pageNumber As Integer
Dim userData As Object
instance.DeletePage(id, pageNumber, userData)
[OperationContractAttribute(Name="DeletePage", Action="DeletePage")]
[WebInvokeAttribute(BodyStyle=WebMessageBodyStyle.WrappedRequest,
IsBodyStyleSetExplicitly=true,
IsRequestFormatSetExplicitly=true,
IsResponseFormatSetExplicitly=true,
Method="POST",
RequestFormat=WebMessageFormat.Json,
ResponseFormat=WebMessageFormat.Json)]
void DeletePage(
String^ ,
int ,
Object^
)