本文整理汇总了C#中ServiceCallOptions类的典型用法代码示例。如果您正苦于以下问题:C# ServiceCallOptions类的具体用法?C# ServiceCallOptions怎么用?C# ServiceCallOptions使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
ServiceCallOptions类属于命名空间,在下文中一共展示了ServiceCallOptions类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Create
public static jQueryXmlHttpRequest Create(SaveRequest<MeetingAgendaTypeRow> request, Action<SaveResponse> onSuccess, ServiceCallOptions options = null)
{
return Q.ServiceRequest("Meeting/MeetingAgendaType/Create", request, onSuccess, options);
}
示例2: List
public static jQueryXmlHttpRequest List(ListRequest request, Action<ListResponse<CustomerRow>> onSuccess, ServiceCallOptions options = null)
{
return null;
}
示例3: Undelete
public static jQueryXmlHttpRequest Undelete(UndeleteRequest request, Action<UndeleteResponse> onSuccess, ServiceCallOptions options = null)
{
return Q.ServiceRequest("Meeting/MeetingDecision/Undelete", request, onSuccess, options);
}
示例4: Update
public static jQueryXmlHttpRequest Update(RolePermissionUpdateRequest request, Action<SaveResponse> onSuccess, ServiceCallOptions options = null)
{
return null;
}
示例5: Update
public static jQueryXmlHttpRequest Update(SaveRequest<CustomerRow> request, Action<SaveResponse> onSuccess, ServiceCallOptions options = null)
{
return null;
}
示例6: List
public static jQueryXmlHttpRequest List(TranslationListRequest request, Action<ListResponse<TranslationItem>> onSuccess, ServiceCallOptions options = null)
{
return null;
}
示例7: Retrieve
public static jQueryXmlHttpRequest Retrieve(RetrieveRequest request, Action<RetrieveResponse<LanguageRow>> onSuccess, ServiceCallOptions options = null)
{
return null;
}
示例8: ListPermissionKeys
public static jQueryXmlHttpRequest ListPermissionKeys(ServiceRequest request, Action<ListResponse<String>> onSuccess, ServiceCallOptions options = null)
{
return null;
}
示例9: RetrieveLocalization
public static jQueryXmlHttpRequest RetrieveLocalization(RetrieveLocalizationRequest request, Action<RetrieveLocalizationResponse<ProductRow>> onSuccess, ServiceCallOptions options = null)
{
return null;
}
示例10: List
public static jQueryXmlHttpRequest List(ListRequest request, Action<ListResponse<ShipperRow>> onSuccess, ServiceCallOptions options = null)
{
return Q.ServiceRequest(Methods.List, request, onSuccess, options);
}
示例11: List
public static jQueryXmlHttpRequest List(UserPermissionListRequest request, Action<ListResponse<UserPermissionRow>> onSuccess, ServiceCallOptions options = null)
{
return null;
}
示例12: Create
public static jQueryXmlHttpRequest Create(SaveRequest<ShipperRow> request, Action<SaveResponse> onSuccess, ServiceCallOptions options = null)
{
return Q.ServiceRequest(Methods.Create, request, onSuccess, options);
}
示例13: Retrieve
public static jQueryXmlHttpRequest Retrieve(RetrieveRequest request, Action<RetrieveResponse<MeetingTypeRow>> onSuccess, ServiceCallOptions options = null)
{
return Q.ServiceRequest("Meeting/MeetingType/Retrieve", request, onSuccess, options);
}
示例14: Delete
public static jQueryXmlHttpRequest Delete(DeleteRequest request, Action<DeleteResponse> onSuccess, ServiceCallOptions options = null)
{
return Q.ServiceRequest("Meeting/MeetingType/Delete", request, onSuccess, options);
}
示例15: Retrieve
public static jQueryXmlHttpRequest Retrieve(RetrieveRequest request, Action<RetrieveResponse<EmployeeTerritoryRow>> onSuccess, ServiceCallOptions options = null)
{
return null;
}