Interface IBaseRequestBuilder
The base request builder interface.
Namespace: Microsoft.Graph
Assembly: Microsoft.Graph.CoreSDK.dll
Syntax
public interface IBaseRequestBuilder
Properties
View SourceClient
Gets the IBaseClient for handling requests.
Declaration
IBaseClient Client { get; }
Property Value
Type | Description |
---|---|
IBaseClient |
RequestUrl
Gets the URL for the built request, without query string.
Declaration
string RequestUrl { get; }
Property Value
Type | Description |
---|---|
System.String |
Methods
View SourceAppendSegmentToRequestUrl(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. |