Show / Hide Table of Contents

Class ProjectsResource.KnowledgeBasesResource.DocumentsResource.ListRequest

Returns the list of all documents of the knowledge base.

Inheritance
System.Object
ClientServiceRequest
ClientServiceRequest<GoogleCloudDialogflowV2ListDocumentsResponse>
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListDocumentsResponse>
ProjectsResource.KnowledgeBasesResource.DocumentsResource.ListRequest
Implements
IClientServiceRequest<GoogleCloudDialogflowV2ListDocumentsResponse>
IClientServiceRequest
Inherited Members
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListDocumentsResponse>.Xgafv
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListDocumentsResponse>.AccessToken
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListDocumentsResponse>.Alt
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListDocumentsResponse>.Callback
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListDocumentsResponse>.Fields
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListDocumentsResponse>.Key
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListDocumentsResponse>.OauthToken
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListDocumentsResponse>.PrettyPrint
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListDocumentsResponse>.QuotaUser
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListDocumentsResponse>.UploadType
DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListDocumentsResponse>.UploadProtocol
ClientServiceRequest<GoogleCloudDialogflowV2ListDocumentsResponse>.Execute()
ClientServiceRequest<GoogleCloudDialogflowV2ListDocumentsResponse>.ExecuteAsStream()
ClientServiceRequest<GoogleCloudDialogflowV2ListDocumentsResponse>.ExecuteAsync()
ClientServiceRequest<GoogleCloudDialogflowV2ListDocumentsResponse>.ExecuteAsync(CancellationToken)
ClientServiceRequest<GoogleCloudDialogflowV2ListDocumentsResponse>.ExecuteAsStreamAsync()
ClientServiceRequest<GoogleCloudDialogflowV2ListDocumentsResponse>.ExecuteAsStreamAsync(CancellationToken)
ClientServiceRequest<GoogleCloudDialogflowV2ListDocumentsResponse>.CreateRequest(Nullable<Boolean>)
ClientServiceRequest<GoogleCloudDialogflowV2ListDocumentsResponse>.GenerateRequestUri()
ClientServiceRequest<GoogleCloudDialogflowV2ListDocumentsResponse>.GetBody()
ClientServiceRequest<GoogleCloudDialogflowV2ListDocumentsResponse>.GetDefaultETagAction(String)
ClientServiceRequest<GoogleCloudDialogflowV2ListDocumentsResponse>.ETagAction
ClientServiceRequest<GoogleCloudDialogflowV2ListDocumentsResponse>.ModifyRequest
ClientServiceRequest<GoogleCloudDialogflowV2ListDocumentsResponse>.ValidateParameters
ClientServiceRequest<GoogleCloudDialogflowV2ListDocumentsResponse>.RequestParameters
ClientServiceRequest<GoogleCloudDialogflowV2ListDocumentsResponse>.Service
ClientServiceRequest._unsuccessfulResponseHandlers
ClientServiceRequest._exceptionHandlers
ClientServiceRequest._executeInterceptors
ClientServiceRequest.AddUnsuccessfulResponseHandler(IHttpUnsuccessfulResponseHandler)
ClientServiceRequest.AddExceptionHandler(IHttpExceptionHandler)
ClientServiceRequest.AddExecuteInterceptor(IHttpExecuteInterceptor)
ClientServiceRequest.Credential
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Dialogflow.v2
Assembly: Google.Apis.Dialogflow.v2.dll
Syntax
public class ListRequest : DialogflowBaseServiceRequest<GoogleCloudDialogflowV2ListDocumentsResponse>, IClientServiceRequest<GoogleCloudDialogflowV2ListDocumentsResponse>, IClientServiceRequest

Constructors

ListRequest(IClientService, String)

Constructs a new List request.

Declaration
public ListRequest(IClientService service, string parent)
Parameters
Type Name Description
IClientService service
System.String parent

Properties

HttpMethod

Gets the HTTP method.

Declaration
public override string HttpMethod { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Dialogflow.v2.Data.GoogleCloudDialogflowV2ListDocumentsResponse>.HttpMethod

MethodName

Gets the method name.

Declaration
public override string MethodName { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Dialogflow.v2.Data.GoogleCloudDialogflowV2ListDocumentsResponse>.MethodName

PageSize

The maximum number of items to return in a single page. By default 10 and at most 100.

Declaration
[RequestParameter("pageSize", RequestParameterType.Query)]
public virtual int? PageSize { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

PageToken

The next_page_token value returned from a previous list request.

Declaration
[RequestParameter("pageToken", RequestParameterType.Query)]
public virtual string PageToken { get; set; }
Property Value
Type Description
System.String

Parent

Required. The knowledge base to list all documents for. Format: projects//locations//knowledgeBases/.

Declaration
[RequestParameter("parent", RequestParameterType.Path)]
public virtual string Parent { get; }
Property Value
Type Description
System.String

RestPath

Gets the REST path.

Declaration
public override string RestPath { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Dialogflow.v2.Data.GoogleCloudDialogflowV2ListDocumentsResponse>.RestPath

Methods

InitParameters()

Initializes List parameter list.

Declaration
protected override void InitParameters()
Overrides
Google.Apis.Dialogflow.v2.DialogflowBaseServiceRequest<Google.Apis.Dialogflow.v2.Data.GoogleCloudDialogflowV2ListDocumentsResponse>.InitParameters()

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
In This Article
Back to top