Skip to content

Instantly share code, notes, and snippets.

View sixeyed's full-sized avatar

Elton Stoneman sixeyed

View GitHub Profile
@sixeyed
sixeyed / QueueClient.cs
Last active September 1, 2020 17:37
Wrappers for the SQS and SNS clients in the AWS SDK for .NET v2
using Amazon;
using Amazon.SQS;
using Amazon.SQS.Model;
using Amazon.SQS.Util;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
namespace Sixeyed.Blogging.Aws
@sixeyed
sixeyed / QueueClient.cs
Created October 11, 2013 19:38
A wrapper for the SQS client in the AWS SDK for.NET v2, which uses the message-pump pattern
using Amazon;
using Amazon.SQS;
using Amazon.SQS.Model;
using Amazon.SQS.Util;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
namespace Sixeyed.Blogging.Aws
@sixeyed
sixeyed / SaveQuote_Full.cs
Last active December 21, 2015 04:09
Saving a quote with the Dynamics CRM SDK, using a service identity in a back-end process.
using System;
using System.Linq;
using System.ServiceModel.Description;
using x.y.z.ServiceAgents.DynamicsCrm.OrganizationService;
using Microsoft.Xrm.Sdk;
using Microsoft.Xrm.Sdk.Client;
namespace x.y.z.Services.Quotes
{
public static class SaveQuote