@@ -68,7 +68,8 @@ public void LoadAPIKey(string filename)
6868 throw ex ;
6969 }
7070 }
71-
71+
72+ #region GetAuthor
7273 public string URLGetAuthor ( string url )
7374 {
7475 CheckURL ( url ) ;
@@ -99,7 +100,9 @@ public string HTMLGetAuthor(string html, string url, AlchemyAPI_BaseParams param
99100
100101 return POST ( "HTMLGetAuthor" , "html" , parameters ) ;
101102 }
103+ #endregion
102104
105+ #region GetRankedNamedEntities
103106 public string URLGetRankedNamedEntities ( string url )
104107 {
105108 CheckURL ( url ) ;
@@ -146,7 +149,9 @@ public string TextGetRankedNamedEntities(string text, AlchemyAPI_EntityParams pa
146149
147150 return POST ( "TextGetRankedNamedEntities" , "text" , parameters ) ;
148151 }
152+ #endregion
149153
154+ #region GetRankedConcepts
150155 public string URLGetRankedConcepts ( string url )
151156 {
152157 CheckURL ( url ) ;
@@ -192,7 +197,9 @@ public string TextGetRankedConcepts(string text, AlchemyAPI_ConceptParams parame
192197
193198 return POST ( "TextGetRankedConcepts" , "text" , parameters ) ;
194199 }
195-
200+ #endregion
201+
202+ #region GetRankedKeywords
196203 public string URLGetRankedKeywords ( string url )
197204 {
198205 CheckURL ( url ) ;
@@ -238,7 +245,9 @@ public string TextGetRankedKeywords(string text, AlchemyAPI_KeywordParams parame
238245
239246 return POST ( "TextGetRankedKeywords" , "text" , parameters ) ;
240247 }
248+ #endregion
241249
250+ #region GetLanguage
242251 public string URLGetLanguage ( string url )
243252 {
244253 CheckURL ( url ) ;
@@ -284,7 +293,9 @@ public string TextGetLanguage(string text, AlchemyAPI_LanguageParams parameters)
284293
285294 return POST ( "TextGetLanguage" , "text" , parameters ) ;
286295 }
296+ #endregion
287297
298+ #region GetCategory
288299 public string URLGetCategory ( string url )
289300 {
290301 CheckURL ( url ) ;
@@ -330,7 +341,9 @@ public string TextGetCategory(string text, AlchemyAPI_CategoryParams parameters)
330341
331342 return POST ( "TextGetCategory" , "text" , parameters ) ;
332343 }
333-
344+ #endregion
345+
346+ #region GetText
334347 public string URLGetText ( string url )
335348 {
336349 CheckURL ( url ) ;
@@ -361,7 +374,9 @@ public string HTMLGetText(string html, string url,AlchemyAPI_TextParams paramete
361374
362375 return POST ( "HTMLGetText" , "html" , parameters ) ;
363376 }
377+ #endregion
364378
379+ #region GetRawText
365380 public string URLGetRawText ( string url )
366381 {
367382 CheckURL ( url ) ;
@@ -392,7 +407,9 @@ public string HTMLGetRawText(string html, string url, AlchemyAPI_BaseParams para
392407
393408 return POST ( "HTMLGetRawText" , "html" , parameters ) ;
394409 }
410+ #endregion
395411
412+ #region GetTitle
396413 public string URLGetTitle ( string url )
397414 {
398415 CheckURL ( url ) ;
@@ -424,7 +441,9 @@ public string HTMLGetTitle(string html, string url, AlchemyAPI_BaseParams parame
424441
425442 return POST ( "HTMLGetTitle" , "html" , parameters ) ;
426443 }
444+ #endregion
427445
446+ #region GetFeedLinks
428447 public string URLGetFeedLinks ( string url )
429448 {
430449 CheckURL ( url ) ;
@@ -455,7 +474,9 @@ public string HTMLGetFeedLinks(string html, string url, AlchemyAPI_BaseParams pa
455474
456475 return POST ( "HTMLGetFeedLinks" , "html" , parameters ) ;
457476 }
477+ #endregion
458478
479+ #region GetMicroformats
459480 public string URLGetMicroformats ( string url )
460481 {
461482 CheckURL ( url ) ;
@@ -486,7 +507,9 @@ public string HTMLGetMicroformats(string html, string url, AlchemyAPI_BaseParams
486507
487508 return POST ( "HTMLGetMicroformatData" , "html" , parameters ) ;
488509 }
510+ #endregion
489511
512+ #region GetConstraintQuery
490513 public string URLGetConstraintQuery ( string url , string query )
491514 {
492515 CheckURL ( url ) ;
@@ -553,7 +576,9 @@ public string HTMLGetConstraintQuery(string html, string url, AlchemyAPI_Constra
553576
554577 return POST ( "HTMLGetConstraintQuery" , "html" , parameters ) ;
555578 }
579+ #endregion
556580
581+ #region GetTextSentiment
557582 public string URLGetTextSentiment ( string url )
558583 {
559584 CheckURL ( url ) ;
@@ -599,7 +624,9 @@ public string TextGetTextSentiment(string text, AlchemyAPI_BaseParams parameters
599624
600625 return POST ( "TextGetTextSentiment" , "text" , parameters ) ;
601626 }
602- //------
627+ #endregion
628+
629+ #region GetTargetedSentiment
603630 public string URLGetTargetedSentiment ( string url , string target )
604631 {
605632 CheckURL ( url ) ;
@@ -658,8 +685,9 @@ public string TextGetTargetedSentiment(string text, string target, AlchemyAPI_Ta
658685
659686 return POST ( "TextGetTargetedSentiment" , "text" , parameters ) ;
660687 }
661- //------
688+ #endregion
662689
690+ #region GetRelations
663691 public string URLGetRelations ( string url )
664692 {
665693 CheckURL ( url ) ;
@@ -705,6 +733,24 @@ public string TextGetRelations(string text, AlchemyAPI_RelationParams parameters
705733
706734 return POST ( "TextGetRelations" , "text" , parameters ) ;
707735 }
736+ #endregion
737+
738+ #region GetCombinedData
739+ public string URLGetCombinedData ( string url , AlchemyAPI_CombinedDataParams parameters )
740+ {
741+ CheckURL ( url ) ;
742+ parameters . setUrl ( url ) ;
743+
744+ return GET ( "URLGetCombinedData" , "url" , parameters ) ;
745+ }
746+ public string TextGetCombinedData ( string text , AlchemyAPI_CombinedDataParams parameters )
747+ {
748+ CheckText ( text ) ;
749+ parameters . setText ( text ) ;
750+
751+ return POST ( "TextGetCombinedData" , "text" , parameters ) ;
752+ }
753+ #endregion
708754
709755 private void CheckHTML ( string html , string url )
710756 {
0 commit comments