C# 클래스 OpenStack.Services.ContentDelivery.V1.ListServicesExtensions

This class provides extension methods for specifying additional parameters for the ListServicesApiCall HTTP API call.
파일 보기 프로젝트 열기: crowdy/OpenStack-ConoHa

공개 메소드들

메소드 설명
WithMarker ( this apiCall, ServiceId serviceId ) : ListServicesApiCall

Sets (or removes) the marker query parameter for a ListServicesApiCall HTTP API call.

WithMarker ( this apiCall, ServiceId serviceId ) : Task

Sets (or removes) the marker query parameter for a ListServicesApiCall HTTP API call.

This method simplifies the use of WithMarker(ListServicesApiCall, ServiceId) in scenarios where are not used for the preparation of the HTTP API call.

WithPageSize ( this apiCall, int pageSize ) : ListServicesApiCall

Sets (or removes) the limit query parameter for a ListServicesApiCall HTTP API call.

WithPageSize ( this apiCall, int pageSize ) : Task

Sets (or removes) the limit query parameter for a ListServicesApiCall HTTP API call.

This method simplifies the use of WithPageSize(ListServicesApiCall, int?) in scenarios where are not used for the preparation of the HTTP API call.

메소드 상세

WithMarker() 공개 정적인 메소드

Sets (or removes) the marker query parameter for a ListServicesApiCall HTTP API call.
/// If is . /// If the HTTP API call has been disposed. If the HTTP API call has already been sent.
public static WithMarker ( this apiCall, ServiceId serviceId ) : ListServicesApiCall
apiCall this The prepared HTTP API call.
serviceId ServiceId /// The ID of the last in the previous page of results. /// -or- /// to remove the marker query parameter and have the resulting page start /// with the first item in the list. ///
리턴 ListServicesApiCall

WithMarker() 공개 정적인 메소드

Sets (or removes) the marker query parameter for a ListServicesApiCall HTTP API call.

This method simplifies the use of WithMarker(ListServicesApiCall, ServiceId) in scenarios where are not used for the preparation of the HTTP API call.

/// If is . /// If the HTTP API call has been disposed. If the HTTP API call has already been sent.
public static WithMarker ( this apiCall, ServiceId serviceId ) : Task
apiCall this A representing the asynchronous operation to prepare the HTTP API /// call.
serviceId ServiceId /// The ID of the last in the previous page of results. /// -or- /// to remove the marker query parameter and have the resulting page start /// with the first item in the list. ///
리턴 Task

WithPageSize() 공개 정적인 메소드

Sets (or removes) the limit query parameter for a ListServicesApiCall HTTP API call.
/// If is . /// If is less than 0. If the HTTP API call has been disposed. If the HTTP API call has already been sent.
public static WithPageSize ( this apiCall, int pageSize ) : ListServicesApiCall
apiCall this The prepared HTTP API call.
pageSize int /// The maximum number of items to return in a single page of results. /// -or- /// to remove the limit query parameter and use the default page size /// configured by the vendor for the service. ///
리턴 ListServicesApiCall

WithPageSize() 공개 정적인 메소드

Sets (or removes) the limit query parameter for a ListServicesApiCall HTTP API call.

This method simplifies the use of WithPageSize(ListServicesApiCall, int?) in scenarios where are not used for the preparation of the HTTP API call.

/// If is . /// If is less than 0. If the HTTP API call has been disposed. If the HTTP API call has already been sent.
public static WithPageSize ( this apiCall, int pageSize ) : Task
apiCall this A representing the asynchronous operation to prepare the HTTP API /// call.
pageSize int /// The maximum number of items to return in a single page of results. /// -or- /// to remove the limit query parameter and use the default page size /// configured by the vendor for the service. ///
리턴 Task