C# 클래스 Netsy.Helpers.EtsyUriBuilder

Class to build a Uri to the Etsy site
파일 보기 프로젝트 열기: AnthonySteele/Netsy 1 사용 예제들

공개 메소드들

메소드 설명
ApiKey ( ) : EtsyUriBuilder

Append the Api key

Append ( IEnumerable values ) : EtsyUriBuilder

Append part of a url

Append ( string urlPart ) : EtsyUriBuilder

Append part of a url

DetailLevel ( DetailLevel detailLevel ) : EtsyUriBuilder

Append a detail level to the uri

Limit ( int limit ) : EtsyUriBuilder

Append an limit to the uri

Offset ( int offset ) : EtsyUriBuilder

Append an offset to the uri

OffsetLimit ( int offset, int limit ) : EtsyUriBuilder

Append an limit to the uri

OptionalParam ( string paramName, decimal paramValue ) : EtsyUriBuilder

Append a uri param to the uri, if the param has a value

OptionalParam ( string paramName, int paramValue ) : EtsyUriBuilder

Append a uri param to the uri, if the param has a value

Param ( string paramName, bool paramValue ) : EtsyUriBuilder

Append a uri param to the uri

Param ( string paramName, int paramValue ) : EtsyUriBuilder

Append a uri param to the uri

Param ( string paramName, string paramValue ) : EtsyUriBuilder

Append a uri param to the uri

Result ( ) : Uri

Generate the resulting Uri

Sort ( SortField sortField, SortOrder sortOrder ) : EtsyUriBuilder

Append a sort field and sort order to the uri

SortOrder ( SortOrder sortOrder ) : EtsyUriBuilder

Append a sort order to the uri

Start ( EtsyContext etsyContext ) : EtsyUriBuilder

Start the Uri with the base uri

Start ( EtsyContext etsyContext, string basePath ) : EtsyUriBuilder

Start the Uri with the base uri and a path under that

Start ( EtsyContext etsyContext, string basePath, EtsyColor color ) : EtsyUriBuilder

Start the Uri with the base uri and a path under that

Start ( EtsyContext etsyContext, string basePath, int id ) : EtsyUriBuilder

Start the Uri with the base uri and a path under that

Start ( EtsyContext etsyContext, string basePath, string id ) : EtsyUriBuilder

Start the Uri with the base uri and a path under that

ToString ( ) : string

Display for debug

비공개 메소드들

메소드 설명
EtsyUriBuilder ( EtsyContext etsyContext ) : System

Initializes a new instance of the etsyUriBuilder class

메소드 상세

ApiKey() 공개 메소드

Append the Api key
public ApiKey ( ) : EtsyUriBuilder
리턴 EtsyUriBuilder

Append() 공개 메소드

Append part of a url
public Append ( IEnumerable values ) : EtsyUriBuilder
values IEnumerable the values to append
리턴 EtsyUriBuilder

Append() 공개 메소드

Append part of a url
public Append ( string urlPart ) : EtsyUriBuilder
urlPart string the partial url text to append
리턴 EtsyUriBuilder

DetailLevel() 공개 메소드

Append a detail level to the uri
public DetailLevel ( DetailLevel detailLevel ) : EtsyUriBuilder
detailLevel DetailLevel the detail level
리턴 EtsyUriBuilder

Limit() 공개 메소드

Append an limit to the uri
public Limit ( int limit ) : EtsyUriBuilder
limit int the result set limit
리턴 EtsyUriBuilder

Offset() 공개 메소드

Append an offset to the uri
public Offset ( int offset ) : EtsyUriBuilder
offset int the result set offset
리턴 EtsyUriBuilder

OffsetLimit() 공개 메소드

Append an limit to the uri
public OffsetLimit ( int offset, int limit ) : EtsyUriBuilder
offset int the result set offset
limit int the results limit
리턴 EtsyUriBuilder

OptionalParam() 공개 메소드

Append a uri param to the uri, if the param has a value
public OptionalParam ( string paramName, decimal paramValue ) : EtsyUriBuilder
paramName string the param name
paramValue decimal the param value
리턴 EtsyUriBuilder

OptionalParam() 공개 메소드

Append a uri param to the uri, if the param has a value
public OptionalParam ( string paramName, int paramValue ) : EtsyUriBuilder
paramName string the param name
paramValue int the param value
리턴 EtsyUriBuilder

Param() 공개 메소드

Append a uri param to the uri
public Param ( string paramName, bool paramValue ) : EtsyUriBuilder
paramName string the param name
paramValue bool the param value
리턴 EtsyUriBuilder

Param() 공개 메소드

Append a uri param to the uri
public Param ( string paramName, int paramValue ) : EtsyUriBuilder
paramName string the param name
paramValue int the param value
리턴 EtsyUriBuilder

Param() 공개 메소드

Append a uri param to the uri
public Param ( string paramName, string paramValue ) : EtsyUriBuilder
paramName string the param name
paramValue string the param value
리턴 EtsyUriBuilder

Result() 공개 메소드

Generate the resulting Uri
public Result ( ) : Uri
리턴 System.Uri

Sort() 공개 메소드

Append a sort field and sort order to the uri
public Sort ( SortField sortField, SortOrder sortOrder ) : EtsyUriBuilder
sortField SortField the sort field
sortOrder SortOrder the sort order
리턴 EtsyUriBuilder

SortOrder() 공개 메소드

Append a sort order to the uri
public SortOrder ( SortOrder sortOrder ) : EtsyUriBuilder
sortOrder SortOrder the sort order
리턴 EtsyUriBuilder

Start() 공개 정적인 메소드

Start the Uri with the base uri
public static Start ( EtsyContext etsyContext ) : EtsyUriBuilder
etsyContext Netsy.DataModel.EtsyContext the etsy context
리턴 EtsyUriBuilder

Start() 공개 정적인 메소드

Start the Uri with the base uri and a path under that
public static Start ( EtsyContext etsyContext, string basePath ) : EtsyUriBuilder
etsyContext Netsy.DataModel.EtsyContext the etsy context
basePath string the path on the base uri
리턴 EtsyUriBuilder

Start() 공개 정적인 메소드

Start the Uri with the base uri and a path under that
public static Start ( EtsyContext etsyContext, string basePath, EtsyColor color ) : EtsyUriBuilder
etsyContext Netsy.DataModel.EtsyContext the etsy context
basePath string the path on the base uri
color Netsy.DataModel.EtsyColor the color to append
리턴 EtsyUriBuilder

Start() 공개 정적인 메소드

Start the Uri with the base uri and a path under that
public static Start ( EtsyContext etsyContext, string basePath, int id ) : EtsyUriBuilder
etsyContext Netsy.DataModel.EtsyContext the etsy context
basePath string the path on the base uri
id int the item id to append
리턴 EtsyUriBuilder

Start() 공개 정적인 메소드

Start the Uri with the base uri and a path under that
public static Start ( EtsyContext etsyContext, string basePath, string id ) : EtsyUriBuilder
etsyContext Netsy.DataModel.EtsyContext the etsy context
basePath string the path on the base uri
id string the item id to append
리턴 EtsyUriBuilder

ToString() 공개 메소드

Display for debug
public ToString ( ) : string
리턴 string