├── dotnet
└── _._
├── nanoFramework
├── Amqp.nanoFramework
│ ├── Handler
│ │ └── .gitkeep
│ └── packages.config
├── Test.Amqp.nanoFramework
│ ├── Test
│ │ └── .gitkeep
│ ├── packages.config
│ └── Properties
│ │ └── AssemblyInfo.cs
└── Amqp.Micro.nanoFramework
│ └── packages.config
├── src
├── amqp.snk
├── Net
│ ├── TcpKeepAliveSettings.cs
│ ├── Map.Net.cs
│ ├── List.cs
│ ├── WrappedByteBuffer.cs
│ ├── IConnectionFactory.cs
│ ├── IBufferManager.cs
│ └── TransportProvider.cs
├── Properties
│ ├── StoreAssemblyInfo.cs
│ ├── Version.cs
│ └── AssemblyInfo.cs
├── Directory.Build.props
├── Amqp.WebSockets.Client.csproj
├── Serialization
│ ├── OnSerializedAttribute.cs
│ ├── OnDeserializedAttribute.cs
│ ├── OnSerializingAttribute.cs
│ ├── OnDeserializingAttribute.cs
│ ├── SerializableMember.cs
│ ├── IContractResolver.cs
│ ├── AmqpMember.cs
│ ├── EncodingType.cs
│ ├── IAmqpSerializable.cs
│ ├── AmqpProvidesAttribute.cs
│ └── AmqpMemberAttribute.cs
├── Listener
│ ├── IAuthenticated.cs
│ ├── ContextState.cs
│ ├── IRequestProcessor.cs
│ ├── IMessageProcessor.cs
│ ├── ILinkProcessor.cs
│ ├── DispositionContext.cs
│ ├── ListenerSession.cs
│ ├── LinkCollection.cs
│ ├── ReceiveContext.cs
│ ├── FlowContext.cs
│ └── MessageContext.cs
├── Amqp.Net.csproj
├── Types
│ ├── IStringDecoder.cs
│ └── Descriptor.cs
├── CreditMode.cs
├── Framing
│ ├── ReceiverSettleMode.cs
│ ├── Outcome.cs
│ ├── SenderSettleMode.cs
│ ├── Footer.cs
│ ├── DeliveryState.cs
│ ├── ApplicationProperties.cs
│ ├── DeliveryAnnotations.cs
│ ├── MessageAnnotations.cs
│ ├── AmqpSequence.cs
│ ├── Released.cs
│ └── Accepted.cs
├── Handler
│ ├── IHandler.cs
│ └── IDelivery.cs
├── Amqp.Serialization.csproj
├── WinRT
│ └── Timer.cs
├── Sasl
│ └── SaslCode.cs
└── ITransport.cs
├── docs
├── toc.yml
├── template
│ └── index.html.tmpl
├── docfx.json
├── articles
│ ├── toc.yml
│ ├── versioning.md
│ ├── tracing.md
│ ├── test_amqp_broker.md
│ └── installation.md
└── index.md
├── Examples
├── Device
│ ├── Device.Thermometer
│ │ ├── OnBoardFlash.dat
│ │ ├── OnBoardFlash.dat.smd
│ │ ├── Resources
│ │ │ └── small.tinyfnt
│ │ ├── Resources.Designer.cs
│ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ ├── Device.Controller
│ │ ├── Assets
│ │ │ ├── AlignmentGrid.png
│ │ │ ├── ApplicationIcon.png
│ │ │ └── Tiles
│ │ │ │ ├── IconicTileSmall.png
│ │ │ │ ├── FlipCycleTileLarge.png
│ │ │ │ ├── FlipCycleTileMedium.png
│ │ │ │ ├── FlipCycleTileSmall.png
│ │ │ │ └── IconicTileMediumLarge.png
│ │ ├── Properties
│ │ │ ├── AppManifest.xml
│ │ │ ├── WMAppManifest.xml
│ │ │ └── AssemblyInfo.cs
│ │ ├── App.xaml
│ │ └── LocalizedStrings.cs
│ ├── Device.SmallMemory.nanoFramework
│ │ ├── packages.config
│ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ ├── Device.Thermometer.nanoFramework
│ │ ├── packages.config
│ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ └── Device.SmallMemory
│ │ └── Properties
│ │ └── AssemblyInfo.cs
├── Interop
│ ├── Interop.Drain
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ └── App.config
│ ├── Interop.Spout
│ │ └── App.config
│ ├── Interop.Client
│ │ └── App.config
│ └── Interop.Server
│ │ └── App.config
├── PeerToPeer
│ ├── PeerToPeer.Client
│ │ ├── App.config
│ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ ├── PeerToPeer.Server
│ │ └── App.config
│ ├── PeerToPeer.CustomType
│ │ ├── App.config
│ │ └── Properties
│ │ │ └── AssemblyInfo.cs
│ ├── PeerToPeer.Receiver
│ │ └── App.config
│ └── PeerToPeer.CustomTransport
│ │ └── Properties
│ │ └── AssemblyInfo.cs
├── Reconnect
│ └── ReconnectSender
│ │ ├── App.config
│ │ └── Properties
│ │ └── AssemblyInfo.cs
├── ServiceBus
│ ├── ServiceBus.Cbs
│ │ ├── App.config
│ │ └── Program.cs
│ ├── ServiceBus.Listener
│ │ ├── ServiceBus.Listener.csproj
│ │ └── Program.cs
│ ├── ServiceBus.EventHub.nanoFramework
│ │ ├── packages.config
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ └── Program.cs
│ ├── ServiceBus.EventHub.NetMF
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ └── Program.cs
│ ├── ServiceBus.Topic
│ │ └── Program.cs
│ ├── ServiceBus.WebSockets
│ │ └── Program.cs
│ ├── ServiceBus.EventHub
│ │ └── Program.cs
│ ├── ServiceBus.MessageSession
│ │ └── Program.cs
│ └── Scenarios
│ │ └── Example.cs
└── Serialization
│ └── Serialization.Poco
│ ├── Properties
│ └── AssemblyInfo.cs
│ └── Shape.cs
├── test
├── Test.Amqp.NetCore
│ ├── Images
│ │ ├── UnitTestLogo.scale-100.png
│ │ ├── UnitTestSmallLogo.scale-100.png
│ │ ├── UnitTestStoreLogo.scale-100.png
│ │ └── UnitTestSplashScreen.scale-100.png
│ ├── Test.Amqp.NetCore_TemporaryKey.pfx
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ └── Package.appxmanifest
├── TestAmqpBroker
│ ├── App.config
│ └── TestAmqpBroker.csproj
├── Test.Amqp.NetFX40
│ ├── packages.config
│ ├── app.config
│ └── Properties
│ │ └── AssemblyInfo.cs
├── Common
│ ├── Types
│ │ ├── StreetAddress.cs
│ │ ├── Teacher.cs
│ │ ├── Specification.cs
│ │ └── Student.cs
│ ├── TestHandler.cs
│ ├── ArgumentAttribute.cs
│ ├── MessageBatch.cs
│ └── TestSetup.cs
├── Test.Amqp.Net
│ └── Test.Amqp.Net.csproj
├── Test.Amqp.NetCoreApp
│ └── Test.Amqp.NetCoreApp.csproj
├── PerfTest
│ └── Properties
│ │ └── AssemblyInfo.cs
└── LongHaulTest
│ └── Properties
│ └── AssemblyInfo.cs
├── .gitattributes
├── csproj
├── packages.Amqp.NetFX40.config
└── Amqp.Uwp.project.json
├── netmf
├── NetMF
│ ├── Map.cs
│ ├── TimeoutException.cs
│ └── List.cs
├── NetMFLite
│ └── Link.cs
└── Test
│ └── Program.cs
├── .gitignore
└── nuspec
├── AMQPNetMicro.nanoFramework.nuspec
├── AMQPNetLite.nanoFramework.nuspec
├── AMQPNetMicro.nuspec
├── AMQPNetLite.Serialization.nuspec
├── AMQPNetLite.WebSockets.nuspec
└── AMQPNetLite.NetMF.nuspec
/dotnet/_._:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/nanoFramework/Amqp.nanoFramework/Handler/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/nanoFramework/Test.Amqp.nanoFramework/Test/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/amqp.snk:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azure/amqpnetlite/HEAD/src/amqp.snk
--------------------------------------------------------------------------------
/docs/toc.yml:
--------------------------------------------------------------------------------
1 |
2 | - name: Articles
3 | href: articles/
4 | - name: Api Documentation
5 | href: api/
6 |
--------------------------------------------------------------------------------
/Examples/Device/Device.Thermometer/OnBoardFlash.dat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azure/amqpnetlite/HEAD/Examples/Device/Device.Thermometer/OnBoardFlash.dat
--------------------------------------------------------------------------------
/Examples/Device/Device.Thermometer/OnBoardFlash.dat.smd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azure/amqpnetlite/HEAD/Examples/Device/Device.Thermometer/OnBoardFlash.dat.smd
--------------------------------------------------------------------------------
/Examples/Interop/Interop.Drain/Properties/AssemblyInfo.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azure/amqpnetlite/HEAD/Examples/Interop/Interop.Drain/Properties/AssemblyInfo.cs
--------------------------------------------------------------------------------
/test/Test.Amqp.NetCore/Images/UnitTestLogo.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azure/amqpnetlite/HEAD/test/Test.Amqp.NetCore/Images/UnitTestLogo.scale-100.png
--------------------------------------------------------------------------------
/test/Test.Amqp.NetCore/Test.Amqp.NetCore_TemporaryKey.pfx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azure/amqpnetlite/HEAD/test/Test.Amqp.NetCore/Test.Amqp.NetCore_TemporaryKey.pfx
--------------------------------------------------------------------------------
/Examples/Device/Device.Controller/Assets/AlignmentGrid.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azure/amqpnetlite/HEAD/Examples/Device/Device.Controller/Assets/AlignmentGrid.png
--------------------------------------------------------------------------------
/Examples/Device/Device.Controller/Assets/ApplicationIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azure/amqpnetlite/HEAD/Examples/Device/Device.Controller/Assets/ApplicationIcon.png
--------------------------------------------------------------------------------
/Examples/Device/Device.Thermometer/Resources/small.tinyfnt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azure/amqpnetlite/HEAD/Examples/Device/Device.Thermometer/Resources/small.tinyfnt
--------------------------------------------------------------------------------
/test/Test.Amqp.NetCore/Images/UnitTestSmallLogo.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azure/amqpnetlite/HEAD/test/Test.Amqp.NetCore/Images/UnitTestSmallLogo.scale-100.png
--------------------------------------------------------------------------------
/test/Test.Amqp.NetCore/Images/UnitTestStoreLogo.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azure/amqpnetlite/HEAD/test/Test.Amqp.NetCore/Images/UnitTestStoreLogo.scale-100.png
--------------------------------------------------------------------------------
/test/Test.Amqp.NetCore/Images/UnitTestSplashScreen.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azure/amqpnetlite/HEAD/test/Test.Amqp.NetCore/Images/UnitTestSplashScreen.scale-100.png
--------------------------------------------------------------------------------
/Examples/Device/Device.Controller/Assets/Tiles/IconicTileSmall.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azure/amqpnetlite/HEAD/Examples/Device/Device.Controller/Assets/Tiles/IconicTileSmall.png
--------------------------------------------------------------------------------
/Examples/Device/Device.Controller/Assets/Tiles/FlipCycleTileLarge.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azure/amqpnetlite/HEAD/Examples/Device/Device.Controller/Assets/Tiles/FlipCycleTileLarge.png
--------------------------------------------------------------------------------
/Examples/Device/Device.Controller/Assets/Tiles/FlipCycleTileMedium.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azure/amqpnetlite/HEAD/Examples/Device/Device.Controller/Assets/Tiles/FlipCycleTileMedium.png
--------------------------------------------------------------------------------
/Examples/Device/Device.Controller/Assets/Tiles/FlipCycleTileSmall.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azure/amqpnetlite/HEAD/Examples/Device/Device.Controller/Assets/Tiles/FlipCycleTileSmall.png
--------------------------------------------------------------------------------
/Examples/Device/Device.Controller/Assets/Tiles/IconicTileMediumLarge.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Azure/amqpnetlite/HEAD/Examples/Device/Device.Controller/Assets/Tiles/IconicTileMediumLarge.png
--------------------------------------------------------------------------------
/test/TestAmqpBroker/App.config:
--------------------------------------------------------------------------------
1 |
2 |
AMQP.Net Lite is a lightweight AMQP 1.0 library for the .Net Micro Framework, .NET nanoFramework, .Net Compact Framework, .Net Framework, .Net Core, Windows Runtime platforms, and Mono. The library includes both a client and listener to enable peer to peer and broker based messaging.
29 |