C# 클래스 OpenStack.Services.Identity.V2.ListExtensionsApiCallExtensions

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

공개 메소드들

메소드 설명
WithMarker ( this apiCall, ExtensionAlias alias ) : ListExtensionsApiCall

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

WithMarker ( this apiCall, ExtensionAlias alias ) : Task

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

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

WithPageSize ( this apiCall, int pageSize ) : ListExtensionsApiCall

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

WithPageSize ( this apiCall, int pageSize ) : Task

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

This method simplifies the use of WithPageSize(ListExtensionsApiCall, 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 ListExtensionsApiCall 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, ExtensionAlias alias ) : ListExtensionsApiCall
apiCall this The prepared HTTP API call.
alias ExtensionAlias /// The alias 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. ///
리턴 ListExtensionsApiCall

WithMarker() 공개 정적인 메소드

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

This method simplifies the use of WithMarker(ListExtensionsApiCall, ExtensionAlias) 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, ExtensionAlias alias ) : Task
apiCall this A representing the asynchronous operation to prepare the HTTP API /// call.
alias ExtensionAlias /// The alias 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 ListExtensionsApiCall 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 ) : ListExtensionsApiCall
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. ///
리턴 ListExtensionsApiCall

WithPageSize() 공개 정적인 메소드

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

This method simplifies the use of WithPageSize(ListExtensionsApiCall, 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