C# 클래스 Microsoft.WindowsAzure.MobileServices.MobileServiceTableUrlBuilder

A static helper class for building URLs for Mobile Service tables.
파일 보기 프로젝트 열기: xamarin/azure-mobile-services 1 사용 예제들

공개 메소드들

메소드 설명
CombinePathAndQuery ( string path, string queryString ) : string

Concatenates the URI query string to the URI path.

GetQueryString ( string>.IDictionary parameters ) : string

Converts a dictionary of string key-value pairs into a URI query string

GetUriFragment ( string tableName ) : string

Get a uri fragment representing the resource corresponding to the table.

GetUriFragment ( string tableName, JsonObject instance ) : string

Get a uri fragment representing the resource corresponding to the given instance in the table.

GetUriFragment ( string tableName, object id ) : string

Get a uri fragment representing the resource corresponding to the given id in the table.

메소드 상세

CombinePathAndQuery() 공개 정적인 메소드

Concatenates the URI query string to the URI path.
public static CombinePathAndQuery ( string path, string queryString ) : string
path string The URI path
queryString string The query string.
리턴 string

GetQueryString() 공개 정적인 메소드

Converts a dictionary of string key-value pairs into a URI query string
public static GetQueryString ( string>.IDictionary parameters ) : string
parameters string>.IDictionary The parameters from which to create a query string.
리턴 string

GetUriFragment() 공개 정적인 메소드

Get a uri fragment representing the resource corresponding to the table.
public static GetUriFragment ( string tableName ) : string
tableName string The name of the table.
리턴 string

GetUriFragment() 공개 정적인 메소드

Get a uri fragment representing the resource corresponding to the given instance in the table.
public static GetUriFragment ( string tableName, JsonObject instance ) : string
tableName string The name of the table.
instance JsonObject The instance.
리턴 string

GetUriFragment() 공개 정적인 메소드

Get a uri fragment representing the resource corresponding to the given id in the table.
public static GetUriFragment ( string tableName, object id ) : string
tableName string The name of the table.
id object The id of the instance.
리턴 string