Created
May 30, 2019 03:33
-
-
Save AsishP/564903901b7239716ef8c373e4839f7f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public TextAnalyticsProcessing(TraceWriter Log) | |
{ | |
log = Log; | |
log.Info("Text Processing Section Called"); | |
// Create a client. | |
client = new TextAnalyticsClient(new ApiKeyServiceClientCredentials()) | |
{ | |
Endpoint = "https://australiaeast.api.cognitive.microsoft.com" | |
}; //Replace 'australiaeast' with the correct region for your Text Analytics subscription | |
log.Info("Text Processing section initialized"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment