摘要:
1. Using code to implement UserNamePassword TypeService: static void Main(string[] args) { Console.Write("Your Solution Name: "); string solutionName = Console.ReadLine(); Console.Write("Your Solution... 阅读全文
2009年2月25日
2009年2月18日
摘要:
CloudDrive is a PowerShell (PS) provider that allows the user to access Storage Service as though it was a drive within PS. This allows for using of PS commands to explore the Storage Service using th... 阅读全文
2009年2月16日
摘要:
Windows Azure Table is focused on structured storage at massive scale and at low cost without the relational database features (e.g., no joins). This will allow you to have structured storage with ent... 阅读全文
2009年2月12日
摘要:
Platform: 64-bit Windows Server 2008CPU: 1.5-1.7 GHz x64 equivalentMemory: 1.7 GBNetwork: 100 MbpsTransient local storage: 250 GBWindows azure storage also available: 50 GB 阅读全文
2009年2月11日
摘要:
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Data.Services.Client;using System.Data.Services.Common;using Microsoft.Samples.ServiceHosting.StorageClie... 阅读全文
2009年2月10日
摘要:
http://msdn.microsoft.com/en-us/library/dd179371.aspx http://msdn.microsoft.com/en-us/library/cc752987.aspx 阅读全文
2009年2月4日
摘要:
1. What is SDS?Microsoft® SQL Data Services (SDS) offers highly scalable and Internet-facing distributed database services in the cloud for storing and processing relational queries. SDS can help... 阅读全文
2009年1月21日
摘要:
One of the target scenarios for Windows Azure Blob is to enable efficient upload of blobs that are many GBs in size.This is provided by Windows Azure Blob through the following steps: · Break the... 阅读全文
2009年1月20日
摘要:
"Mesh services" is a term that we usecommonly to refer mesh technologies that enables synchronizing user’s data and extending applications across multiple devices. They are one of the underlying... 阅读全文
2009年1月19日
摘要:
static void CopyStream(Stream sourceStream, Stream destinationStream) { const int BufferSize = 0x10000; byte[] buffer = new byte[BufferSize]; int n = 0; do { n = sourceStream.Read(buffer, 0, BufferSiz... 阅读全文