Show / Hide Table of Contents

Class OrderService.OrderServiceBase

Base class for server-side implementations of OrderService

Inheritance
object
OrderService.OrderServiceBase
Inherited Members
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ToString()
Namespace: Google.Ads.AdManager.V1
Assembly: Google.Ads.AdManager.V1.dll
Syntax
[BindServiceMethod(typeof(OrderService), "BindService")]
public abstract class OrderService.OrderServiceBase

Methods

GetOrder(GetOrderRequest, ServerCallContext)

API to retrieve an Order object.

Declaration
public virtual Task<Order> GetOrder(GetOrderRequest request, ServerCallContext context)
Parameters
Type Name Description
GetOrderRequest request

The request received from the client.

ServerCallContext context

The context of the server-side call handler being invoked.

Returns
Type Description
Task<Order>

The response to send back to the client (wrapped by a task).

ListOrders(ListOrdersRequest, ServerCallContext)

API to retrieve a list of Order objects.

Fields used for literal matching in filter string:

  • order_id
  • display_name
  • external_order_id
Declaration
public virtual Task<ListOrdersResponse> ListOrders(ListOrdersRequest request, ServerCallContext context)
Parameters
Type Name Description
ListOrdersRequest request

The request received from the client.

ServerCallContext context

The context of the server-side call handler being invoked.

Returns
Type Description
Task<ListOrdersResponse>

The response to send back to the client (wrapped by a task).

In this article
Back to top Generated by DocFX