Monday, 14 October 2019
Tuesday, 17 September 2019
WEB API send multiple files client
using (var client = new HttpClient())
{
string url = Environment.GetEnvironmentVariable("PNGToTIFFEndPoint");
BinaryReader binaryReader = new BinaryReader(pngStream);
binaryReader.BaseStream.Position = 0;
int length = (int)pngStream.Length;
byte[] data = binaryReader.ReadBytes(length);
ByteArrayContent bytes = new ByteArrayContent(data);
MultipartFormDataContent multiContent = new MultipartFormDataContent();
multiContent.Add(bytes, "file", fileName);
var result = client.PostAsync(url, multiContent).Result;
var resultVAlue = await result.Content.ReadAsStreamAsync();
return resultVAlue;
}
Tuesday, 21 May 2019
Saturday, 18 May 2019
Azure Data Lake
Azure Data Lake is a salable data storage and analytics service this service is hosted in azure.
https://docs.microsoft.com/en-in/azure/data-lake-analytics/
https://docs.microsoft.com/en-in/azure/data-lake-analytics/
Tuesday, 14 May 2019
PowerShell: Check whether Resource group exist or not.
Get-AzureRmResourceGroup -Name $rgName -ErrorVariable notPresent -ErrorAction SilentlyContinue
if ($notPresent)
{
Write-Host 'ResourceGroup doesnt exist'
# ResourceGroup doesn't exist
}
else
{
Write-Host 'ResourceGroup exist'
# ResourceGroup exist
}
Wednesday, 6 March 2019
Azure Service Fabric
Service Fabric Tool
Service Fabric SDK
Azure Service Fabric back end for gaming, chating applications.
https://docs.microsoft.com/en-us/azure/service-fabric/service-fabric-choose-framework
Guest Executable:
https://docs.microsoft.com/en-us/azure/service-fabric/service-fabric-guest-executables-introduction
Supporting Environments :
Public Clouds
On Premise
State full service
State less service
Subscribe to:
Comments (Atom)

