// ------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. // ------------------------------------------------------------------------------ namespace Microsoft.Graph { /// /// The base request builder interface. /// public interface IBaseRequestBuilder { /// /// Gets the for handling requests. /// IBaseClient Client { get; } /// /// Gets the URL for the built request, without query string. /// string RequestUrl { get; } /// /// Gets a URL that is the request builder's request URL with the segment appended. /// /// The segment to append to the request URL. /// A URL that is the request builder's request URL with the segment appended. string AppendSegmentToRequestUrl(string urlSegment); } }