I am working in google api with asp.net c#, My goal is access google api using service account.
I have imported all needed dlls to create service account to access admin features(admin sdk).
But i couldn't find ServiceAccountCredential.
How can i implement this in my project?
I am using Xamarin Studio and I have an NUnit test library project (PCL) working on my Mac using ServiceAccountCredential. I just tried to move it to an Android test project (MonoDroid), and ServiceAccountCredential does not exist. ServiceAccount does exist (its ancestral class). So this problem may be related to the compile target, and ServiceAccountCredential not being implemented for your target.
ServiceAccountCredential is part of Google.Apis.Auth.OAuth2
Simple example using BigQuery:
Here's how you do it in 2017:
Reference the Google.Apis.Auth package in your code