Enkoni.ServiceModel 2.0.0

There is a newer version of this package available.
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
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Enkoni.ServiceModel" Version="2.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Enkoni.ServiceModel --version 2.0.0
#r "nuget: Enkoni.ServiceModel, 2.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// 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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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,070 6/15/2016
2.3.0 1,512 2/14/2015
2.3.0-rc1 1,091 2/9/2015
2.2.0 1,106 1/5/2015
2.1.0.3 1,272 1/17/2014
2.1.0.1 1,193 11/1/2013
2.1.0 1,482 7/4/2013
2.0.0 1,700 11/28/2012
1.2.0.1 1,419 10/8/2012
1.2.0 1,370 9/1/2012
1.1.0 2,003 6/8/2011
1.0.0 1,720 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.