本文整理汇总了C#中JSONObject.GetSafeUri方法的典型用法代码示例。如果您正苦于以下问题:C# JSONObject.GetSafeUri方法的具体用法?C# JSONObject.GetSafeUri怎么用?C# JSONObject.GetSafeUri使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类JSONObject
的用法示例。
在下文中一共展示了JSONObject.GetSafeUri方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ProcessJson
public void ProcessJson(JSONObject jsonObject)
{
BaseUrl = jsonObject.GetSafeUri("base_url");
SecureBaseUrl = jsonObject.GetSafeUri("secure_base_url");
BackdropSizes = jsonObject.ProcessStringArray("backdrop_sizes");
LogoSizes = jsonObject.ProcessStringArray("logo_sizes");
PosterSizes = jsonObject.ProcessStringArray("poster_sizes");
ProfileSizes = jsonObject.ProcessStringArray("profile_sizes");
StillSizes = jsonObject.ProcessStringArray("still_sizes");
}
示例2:
void ITmdbObject.ProcessJson(JSONObject jsonObject)
{
Description = jsonObject.GetSafeString("description");
Headquarters = jsonObject.GetSafeString("headquarters");
Homepage = jsonObject.GetSafeUri("homepage");
Id = (int)jsonObject.GetSafeNumber("id");
LogoPath = jsonObject.GetSafeString("logo_path");
Name = jsonObject.GetSafeString("name");
ParentCompany = (int)jsonObject.GetSafeNumber("parent_company");
}
示例3:
void ITmdbObject.ProcessJson(JSONObject jsonObject)
{
Adult = jsonObject.GetSafeBoolean("adult");
BackdropPath = jsonObject.GetSafeString("backdrop_path");
BelongsToCollection = jsonObject.ProcessObject<BelongsToCollection>("belongs_to_collection");
Budget = (int)jsonObject.GetSafeNumber("budget");
Genres = jsonObject.ProcessObjectArray<Genre>("genres");
Homepage = jsonObject.GetSafeUri("homepage");
Id = (int)jsonObject.GetSafeNumber("id");
ImdbId = jsonObject.GetSafeString("imdb_id");
OriginalTitle = jsonObject.GetSafeString("original_title");
Overview = jsonObject.GetSafeString("overview");
Popularity = (int)jsonObject.GetSafeNumber("popularity");
PosterPath = jsonObject.GetSafeString("poster_path");
ProductionCompanies = jsonObject.ProcessObjectArray<ProductionCompany>("production_companies");
ProductionCountries = jsonObject.ProcessObjectArray<ProductionCountry>("production_countries");
ReleaseDate = jsonObject.GetSafeDateTime("release_date");
Revenue = (int)jsonObject.GetSafeNumber("revenue");
Runtime = (int)jsonObject.GetSafeNumber("runtime");
SpokenLanguages = jsonObject.ProcessObjectArray<SpokenLanguage>("spoken_languages");
Status = jsonObject.GetSafeString("status");
Tagline = jsonObject.GetSafeString("tagline");
Title = jsonObject.GetSafeString("title");
VoteAverage = jsonObject.GetSafeNumber("vote_average");
VoteCount = (int)jsonObject.GetSafeNumber("vote_count");
_credits = jsonObject.ProcessObject<Credits>("casts");
}
示例4:
void ITmdbObject.ProcessJson(JSONObject jsonObject)
{
BackdropPath = jsonObject.GetSafeString("backdrop_path");
CreatedBy = jsonObject.ProcessObjectArray<Creator>("created_by");
EpisodeRuntime = jsonObject.ProcessIntArray("episode_run_time");
FirstAirDate = jsonObject.GetSafeDateTime("first_air_date");
Genres = jsonObject.ProcessObjectArray<Genre>("genres");
Homepage = jsonObject.GetSafeUri("homepage");
Id = (int)jsonObject.GetSafeNumber("id");
InProduction = jsonObject.GetSafeBoolean("in_production");
Languages = jsonObject.ProcessStringArray("languages");
LastAirDate = jsonObject.GetSafeDateTime("last_air_date");
Name = jsonObject.GetSafeString("name");
Networks = jsonObject.ProcessObjectArray<Network>("networks");
NumberOfEpisodes = (int)jsonObject.GetSafeNumber("number_of_episodes");
NumberOfSeasons = (int)jsonObject.GetSafeNumber("number_of_seasons");
OriginalName = jsonObject.GetSafeString("original_name");
OriginCountry = jsonObject.ProcessStringArray("origin_country");
Overview = jsonObject.GetSafeString("overview");
Popularity = (int)jsonObject.GetSafeNumber("popularity");
PosterPath = jsonObject.GetSafeString("poster_path");
ProductionCompanies = jsonObject.ProcessObjectArray<ProductionCompany>("production_companies");
SeasonSummaries = jsonObject.ProcessObjectArray<SeasonSummary>("seasons");
Status = jsonObject.GetSafeString("status");
VoteAverage = jsonObject.GetSafeNumber("vote_average");
VoteCount = (int)jsonObject.GetSafeNumber("vote_count");
}