BaseFunctionMethodRequestBuilder<T> Class

Definition

The base method request builder class.

public abstract class BaseFunctionMethodRequestBuilder<T> : Microsoft.Graph.BaseRequestBuilder where T : IBaseRequest
type BaseFunctionMethodRequestBuilder<'T (requires 'T :> IBaseRequest)> = class
    inherit BaseRequestBuilder
Public MustInherit Class BaseFunctionMethodRequestBuilder(Of T)
Inherits BaseRequestBuilder

Type Parameters

T
Inheritance
BaseFunctionMethodRequestBuilder<T>

Constructors

BaseFunctionMethodRequestBuilder<T>(String, IBaseClient)

Constructs a new BaseFunctionMethodRequestBuilder.

Fields

passParametersInQueryString

Whether to include parameters in the query string.

Properties

Client

Gets the IBaseClient for handling requests.

(Inherited from BaseRequestBuilder)
RequestUrl

Gets the URL for the built request, without query string.

(Inherited from BaseRequestBuilder)

Methods

AppendSegmentToRequestUrl(String)

Gets a URL that is the request builder's request URL with the segment appended.

(Inherited from BaseRequestBuilder)
CreateRequest(String, IEnumerable<Option>)

Derived classes implement this function to construct the specific request class instance when a request object is required.

Request(IEnumerable<Option>)

Builds the request.

SetParameter(String, Object, Boolean)

A helper method for injecting a parameter string for a given name and value pair. This method handles the nullable case and properly wrapped and escaping string values.

Applies to