Show / Hide Table of Contents

Interface IBaseRequestBuilder

The base request builder interface.

Namespace: Microsoft.Graph
Assembly: Microsoft.Graph.CoreSDK.dll
Syntax
public interface IBaseRequestBuilder

Properties

View Source

Client

Gets the IBaseClient for handling requests.

Declaration
IBaseClient Client { get; }
Property Value
Type Description
IBaseClient
View Source

RequestUrl

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

Declaration
string RequestUrl { get; }
Property Value
Type Description
System.String

Methods

View Source

AppendSegmentToRequestUrl(String)

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

Declaration
string AppendSegmentToRequestUrl(string urlSegment)
Parameters
Type Name Description
System.String urlSegment

The segment to append to the request URL.

Returns
Type Description
System.String

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

  • View Source
Back to top Generated by DocFX