Salesforce : How to fetch report as json using C#
Learn how to easily execute and fetch Salesforce reports as json through Salesforce Reports and Dashboards REST API Using C#.
C#
Learn how to easily execute and fetch Salesforce reports as json through Salesforce Reports and Dashboards REST API Using C#.
Open XML SDK 2.0 provided by Microsoft simplifies the task of manipulating Open XML file format used in create Word, Excel, etc.
Learn how to integrate Salesforce with .NET application using SOAP APIs and perform CRUD operation on Salesforce database directly through SOQL.
Most of C# developers are aware of three usages of "using" keyword. Here is the fourth one that creates alias for a complex type...
See how this small C# code snippet can purge cache without restarting IIS server. This can prove quite handy particularly for Production environments.
Searching for lines in text file containing a specific string can be very handy with below code snippet. This method is very optimal specially if we are accessing log/error/access files. public static IEnumerable<string> ReadAndFilter(this FileInfo info, Predicate<string>…
Manipulating the application behavior based on the file type is a common scenario (like checking if used uploaded a PDF file or text file; whether video is custom player compatible or not, etc.). The whole process here…
Exceptions are safeguards to deal with any unexpected or exceptional situations and logging them helps finding the root cause of issues during runtime. Significance of logging becomes even more critical on production where resources to debug are…
Thinking of resizing an image programmatically? Pretty simple straight forward. Once done, the process can be use to resize images in bulk without any human intervention & third party software. Below is the C# implementation to do…
Getting bytes from a stream or file is quite a normal scenario & once you are able to retrieve the bytes, it can be saved in database as BLOB content as well. This is very handy way…
This C# implementation can help you uploading a file through SFTP access.
C# solution to import & use a custom Font file while drawing/editing images.