C# 클래스 WebmasterToolsApi.WebmasterTools

파일 보기 프로젝트 열기: alexandernyquist/WebmasterToolsApi

공개 프로퍼티들

프로퍼티 타입 설명
Token string

공개 메소드들

메소드 설명
GetCrawlIssues ( string siteId, int startIndex = 1 ) : dynamic
GetKeywords ( string siteId ) : dynamic

Retrieves the keywords feed for a specific site

https://developers.google.com/webmaster-tools/docs/2.0/developers_guide_protocol#Keywords_retrieving

GetMessages ( ) : dynamic

Retrieves a feed containing all messages in a xml feed

https://developers.google.com/webmaster-tools/docs/2.0/reference#Elements_messages

GetSite ( string siteId ) : dynamic

Retrieves the site feed for a specific site

https://developers.google.com/webmaster-tools/docs/2.0/developers_guide_protocol#AD_Retrieving

GetSitemaps ( string siteId ) : dynamic

Retrieves the sitemaps feed for a specific site

https://developers.google.com/webmaster-tools/docs/2.0/developers_guide_protocol#Sitemaps_About

GetSites ( ) : dynamic

Retrieves a feed containing all sites associated with this account

https://developers.google.com/webmaster-tools/docs/2.0/reference#Feeds_sites

WebmasterTools ( string token ) : System

Initializes a new instance

비공개 메소드들

메소드 설명
ParseResponse ( string response ) : dynamic

Parses a google feed into a ExpandoObject

UrlEncode ( string value ) : string

Works around the solution where .NET always sends the last slash un-urlencoded. This method urlencodes the string twice

메소드 상세

GetCrawlIssues() 공개 메소드

public GetCrawlIssues ( string siteId, int startIndex = 1 ) : dynamic
siteId string
startIndex int
리턴 dynamic

GetKeywords() 공개 메소드

Retrieves the keywords feed for a specific site
https://developers.google.com/webmaster-tools/docs/2.0/developers_guide_protocol#Keywords_retrieving
public GetKeywords ( string siteId ) : dynamic
siteId string
리턴 dynamic

GetMessages() 공개 메소드

Retrieves a feed containing all messages in a xml feed
https://developers.google.com/webmaster-tools/docs/2.0/reference#Elements_messages
public GetMessages ( ) : dynamic
리턴 dynamic

GetSite() 공개 메소드

Retrieves the site feed for a specific site
https://developers.google.com/webmaster-tools/docs/2.0/developers_guide_protocol#AD_Retrieving
public GetSite ( string siteId ) : dynamic
siteId string
리턴 dynamic

GetSitemaps() 공개 메소드

Retrieves the sitemaps feed for a specific site
https://developers.google.com/webmaster-tools/docs/2.0/developers_guide_protocol#Sitemaps_About
public GetSitemaps ( string siteId ) : dynamic
siteId string
리턴 dynamic

GetSites() 공개 메소드

Retrieves a feed containing all sites associated with this account
https://developers.google.com/webmaster-tools/docs/2.0/reference#Feeds_sites
public GetSites ( ) : dynamic
리턴 dynamic

WebmasterTools() 공개 메소드

Initializes a new instance
public WebmasterTools ( string token ) : System
token string A Google GData authorization token
리턴 System

프로퍼티 상세

Token 공개적으로 프로퍼티

The current authorization token
public string Token
리턴 string