Enkoni.ServiceModel
2.0.0
See the version list below for details.
dotnet add package Enkoni.ServiceModel --version 2.0.0
NuGet\Install-Package Enkoni.ServiceModel -Version 2.0.0
<PackageReference Include="Enkoni.ServiceModel" Version="2.0.0" />
paket add Enkoni.ServiceModel --version 2.0.0
#r "nuget: Enkoni.ServiceModel, 2.0.0"
// Install Enkoni.ServiceModel as a Cake Addin #addin nuget:?package=Enkoni.ServiceModel&version=2.0.0 // Install Enkoni.ServiceModel as a Cake Tool #tool nuget:?package=Enkoni.ServiceModel&version=2.0.0
Contains a number of helper-classes that can be utilized in combination with WCF services and proxies.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net35 is compatible. net40 was computed. net403 was computed. net45 was computed. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
-
- Enkoni.Logging (>= 1.2.0.2)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
2.4.0 | 16,112 | 6/15/2016 |
2.3.0 | 1,550 | 2/14/2015 |
2.3.0-rc1 | 1,114 | 2/9/2015 |
2.2.0 | 1,147 | 1/5/2015 |
2.1.0.3 | 1,316 | 1/17/2014 |
2.1.0.1 | 1,239 | 11/1/2013 |
2.1.0 | 1,529 | 7/4/2013 |
2.0.0 | 1,746 | 11/28/2012 |
1.2.0.1 | 1,447 | 10/8/2012 |
1.2.0 | 1,405 | 9/1/2012 |
1.1.0 | 2,047 | 6/8/2011 |
1.0.0 | 1,764 | 5/1/2011 |
- Added the SchemaValidationMessageInspector and SchemaValidationBehaviorExtensionElement classes that can be used to
validate sent and received messages against an XML schema.
- Removed the FlatWsdlBehaviorExtensionElement and FlatWsdlBehaviorAttribute classes. The functionality did not always
behave as expected. Since .Net 4.5 has build-in support for generating a single WSDL file, this functionality is no longer required
and therefore it was removed from this framework. When using .NET 4.5, it is recommended to use the new ?singlewsdl quierystring.
When using an earlier version of .NET, it is recommended to use the single WSDL functionality provided by the WCFExtras-library
which can be found at https://wcfextras.codeplex.com/.
- New understanding of the WCF framework and more extensive unit testing learned that the disposable service behavior has
been quite useless from the beginning. If the service implementation needs disposing, use a bindingtype and behavior that supports
sessions. That way, the .NET ecosystem will automatically call the Dispose method upon session ending or channel faulting.