@@ -28,7 +28,6 @@ public readonly partial struct AspectSentiment
2828 private readonly object _dummy ;
2929 private readonly int _dummyPrimitive ;
3030 public Azure . AI . TextAnalytics . SentimentConfidenceScores ConfidenceScores { get { throw null ; } }
31- public int Length { get { throw null ; } }
3231 public int Offset { get { throw null ; } }
3332 public Azure . AI . TextAnalytics . TextSentiment Sentiment { get { throw null ; } }
3433 public string Text { get { throw null ; } }
@@ -40,7 +39,6 @@ public readonly partial struct CategorizedEntity
4039 private readonly int _dummyPrimitive ;
4140 public Azure . AI . TextAnalytics . EntityCategory Category { get { throw null ; } }
4241 public double ConfidenceScore { get { throw null ; } }
43- public int Length { get { throw null ; } }
4442 public int Offset { get { throw null ; } }
4543 public string SubCategory { get { throw null ; } }
4644 public string Text { get { throw null ; } }
@@ -155,7 +153,6 @@ public readonly partial struct LinkedEntityMatch
155153 private readonly object _dummy ;
156154 private readonly int _dummyPrimitive ;
157155 public double ConfidenceScore { get { throw null ; } }
158- public int Length { get { throw null ; } }
159156 public int Offset { get { throw null ; } }
160157 public string Text { get { throw null ; } }
161158 }
@@ -174,7 +171,6 @@ public readonly partial struct OpinionSentiment
174171 private readonly int _dummyPrimitive ;
175172 public Azure . AI . TextAnalytics . SentimentConfidenceScores ConfidenceScores { get { throw null ; } }
176173 public bool IsNegated { get { throw null ; } }
177- public int Length { get { throw null ; } }
178174 public int Offset { get { throw null ; } }
179175 public Azure . AI . TextAnalytics . TextSentiment Sentiment { get { throw null ; } }
180176 public string Text { get { throw null ; } }
@@ -186,7 +182,6 @@ public readonly partial struct PiiEntity
186182 private readonly int _dummyPrimitive ;
187183 public Azure . AI . TextAnalytics . EntityCategory Category { get { throw null ; } }
188184 public double ConfidenceScore { get { throw null ; } }
189- public int Length { get { throw null ; } }
190185 public int Offset { get { throw null ; } }
191186 public string SubCategory { get { throw null ; } }
192187 public string Text { get { throw null ; } }
@@ -245,7 +240,6 @@ public readonly partial struct SentenceSentiment
245240 private readonly object _dummy ;
246241 private readonly int _dummyPrimitive ;
247242 public Azure . AI . TextAnalytics . SentimentConfidenceScores ConfidenceScores { get { throw null ; } }
248- public int Length { get { throw null ; } }
249243 public System . Collections . Generic . IReadOnlyCollection < Azure . AI . TextAnalytics . MinedOpinion > MinedOpinions { get { throw null ; } }
250244 public int Offset { get { throw null ; } }
251245 public Azure . AI . TextAnalytics . TextSentiment Sentiment { get { throw null ; } }
@@ -380,10 +374,10 @@ public static partial class TextAnalyticsModelFactory
380374 public static Azure . AI . TextAnalytics . AnalyzeSentimentResult AnalyzeSentimentResult ( string id , Azure . AI . TextAnalytics . TextAnalyticsError error ) { throw null ; }
381375 public static Azure . AI . TextAnalytics . AnalyzeSentimentResult AnalyzeSentimentResult ( string id , Azure . AI . TextAnalytics . TextDocumentStatistics statistics , Azure . AI . TextAnalytics . DocumentSentiment documentSentiment ) { throw null ; }
382376 public static Azure . AI . TextAnalytics . AnalyzeSentimentResultCollection AnalyzeSentimentResultCollection ( System . Collections . Generic . IEnumerable < Azure . AI . TextAnalytics . AnalyzeSentimentResult > list , Azure . AI . TextAnalytics . TextDocumentBatchStatistics statistics , string modelVersion ) { throw null ; }
383- public static Azure . AI . TextAnalytics . AspectSentiment AspectSentiment ( Azure . AI . TextAnalytics . TextSentiment sentiment , string text , double positiveScore , double negativeScore , int offset , int length ) { throw null ; }
377+ public static Azure . AI . TextAnalytics . AspectSentiment AspectSentiment ( Azure . AI . TextAnalytics . TextSentiment sentiment , string text , double positiveScore , double negativeScore , int offset ) { throw null ; }
384378 [ System . ComponentModel . EditorBrowsableAttribute ( System . ComponentModel . EditorBrowsableState . Never ) ]
385379 public static Azure . AI . TextAnalytics . CategorizedEntity CategorizedEntity ( string text , string category , string subCategory , double score ) { throw null ; }
386- public static Azure . AI . TextAnalytics . CategorizedEntity CategorizedEntity ( string text , string category , string subCategory , double score , int offset , int length ) { throw null ; }
380+ public static Azure . AI . TextAnalytics . CategorizedEntity CategorizedEntity ( string text , string category , string subCategory , double score , int offset ) { throw null ; }
387381 public static Azure . AI . TextAnalytics . CategorizedEntityCollection CategorizedEntityCollection ( System . Collections . Generic . IList < Azure . AI . TextAnalytics . CategorizedEntity > entities , System . Collections . Generic . IList < Azure . AI . TextAnalytics . TextAnalyticsWarning > warnings = null ) { throw null ; }
388382 public static Azure . AI . TextAnalytics . DetectedLanguage DetectedLanguage ( string name , string iso6391Name , double confidenceScore , System . Collections . Generic . IList < Azure . AI . TextAnalytics . TextAnalyticsWarning > warnings = null ) { throw null ; }
389383 public static Azure . AI . TextAnalytics . DetectLanguageResult DetectLanguageResult ( string id , Azure . AI . TextAnalytics . TextAnalyticsError error ) { throw null ; }
@@ -400,10 +394,10 @@ public static partial class TextAnalyticsModelFactory
400394 public static Azure . AI . TextAnalytics . LinkedEntityCollection LinkedEntityCollection ( System . Collections . Generic . IList < Azure . AI . TextAnalytics . LinkedEntity > entities , System . Collections . Generic . IList < Azure . AI . TextAnalytics . TextAnalyticsWarning > warnings = null ) { throw null ; }
401395 [ System . ComponentModel . EditorBrowsableAttribute ( System . ComponentModel . EditorBrowsableState . Never ) ]
402396 public static Azure . AI . TextAnalytics . LinkedEntityMatch LinkedEntityMatch ( string text , double score ) { throw null ; }
403- public static Azure . AI . TextAnalytics . LinkedEntityMatch LinkedEntityMatch ( string text , double score , int offset , int length ) { throw null ; }
397+ public static Azure . AI . TextAnalytics . LinkedEntityMatch LinkedEntityMatch ( string text , double score , int offset ) { throw null ; }
404398 public static Azure . AI . TextAnalytics . MinedOpinion MinedOpinion ( Azure . AI . TextAnalytics . AspectSentiment aspect , System . Collections . Generic . IReadOnlyList < Azure . AI . TextAnalytics . OpinionSentiment > opinions ) { throw null ; }
405- public static Azure . AI . TextAnalytics . OpinionSentiment OpinionSentiment ( Azure . AI . TextAnalytics . TextSentiment sentiment , double positiveScore , double negativeScore , string text , bool isNegated , int offset , int length ) { throw null ; }
406- public static Azure . AI . TextAnalytics . PiiEntity PiiEntity ( string text , string category , string subCategory , double score , int offset , int length ) { throw null ; }
399+ public static Azure . AI . TextAnalytics . OpinionSentiment OpinionSentiment ( Azure . AI . TextAnalytics . TextSentiment sentiment , double positiveScore , double negativeScore , string text , bool isNegated , int offset ) { throw null ; }
400+ public static Azure . AI . TextAnalytics . PiiEntity PiiEntity ( string text , string category , string subCategory , double score , int offset ) { throw null ; }
407401 public static Azure . AI . TextAnalytics . PiiEntityCollection PiiEntityCollection ( System . Collections . Generic . IList < Azure . AI . TextAnalytics . PiiEntity > entities , string redactedText , System . Collections . Generic . IList < Azure . AI . TextAnalytics . TextAnalyticsWarning > warnings = null ) { throw null ; }
408402 public static Azure . AI . TextAnalytics . RecognizeEntitiesResult RecognizeEntitiesResult ( string id , Azure . AI . TextAnalytics . TextAnalyticsError error ) { throw null ; }
409403 public static Azure . AI . TextAnalytics . RecognizeEntitiesResult RecognizeEntitiesResult ( string id , Azure . AI . TextAnalytics . TextDocumentStatistics statistics , Azure . AI . TextAnalytics . CategorizedEntityCollection entities ) { throw null ; }
@@ -416,7 +410,7 @@ public static partial class TextAnalyticsModelFactory
416410 public static Azure . AI . TextAnalytics . RecognizePiiEntitiesResultCollection RecognizePiiEntitiesResultCollection ( System . Collections . Generic . IEnumerable < Azure . AI . TextAnalytics . RecognizePiiEntitiesResult > list , Azure . AI . TextAnalytics . TextDocumentBatchStatistics statistics , string modelVersion ) { throw null ; }
417411 [ System . ComponentModel . EditorBrowsableAttribute ( System . ComponentModel . EditorBrowsableState . Never ) ]
418412 public static Azure . AI . TextAnalytics . SentenceSentiment SentenceSentiment ( Azure . AI . TextAnalytics . TextSentiment sentiment , string text , double positiveScore , double neutralScore , double negativeScore ) { throw null ; }
419- public static Azure . AI . TextAnalytics . SentenceSentiment SentenceSentiment ( Azure . AI . TextAnalytics . TextSentiment sentiment , string text , double positiveScore , double neutralScore , double negativeScore , int offset , int length , System . Collections . Generic . IReadOnlyList < Azure . AI . TextAnalytics . MinedOpinion > minedOpinions ) { throw null ; }
413+ public static Azure . AI . TextAnalytics . SentenceSentiment SentenceSentiment ( Azure . AI . TextAnalytics . TextSentiment sentiment , string text , double positiveScore , double neutralScore , double negativeScore , int offset , System . Collections . Generic . IReadOnlyList < Azure . AI . TextAnalytics . MinedOpinion > minedOpinions ) { throw null ; }
420414 public static Azure . AI . TextAnalytics . SentimentConfidenceScores SentimentConfidenceScores ( double positiveScore , double neutralScore , double negativeScore ) { throw null ; }
421415 public static Azure . AI . TextAnalytics . TextAnalyticsError TextAnalyticsError ( string code , string message , string target = null ) { throw null ; }
422416 public static Azure . AI . TextAnalytics . TextAnalyticsWarning TextAnalyticsWarning ( string code , string message ) { throw null ; }
0 commit comments