BasicHttpBinding.CreateBindingElements Method
.NET Framework 4
Returns an ordered collection of binding elements contained in the current binding.
Assembly: System.ServiceModel (in System.ServiceModel.dll)
Return Value
Type: System.ServiceModel.Channels.BindingElementCollectionThe BindingElementCollection that contains the ordered stack of binding elements described by the BasicHttpBinding.
The order of the binding elements is important. It reflects the order in which the protocol and transport channels are constructed and stacked. This collection of binding elements is a new collection and can be modified and then used to create a CustomBinding.
The following example creates an ordered collection of the binding elements in the current binding.
BasicHttpBinding binding = new BasicHttpBinding(); binding.Name = "binding1"; binding.Namespace = "http:\\My.ServiceModel.Samples"; BindingElementCollection elements = binding.CreateBindingElements();
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.