Binding.IsIPPortHostBinding Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a value indicating whether the binding is bound to an IP port.
public:
property bool IsIPPortHostBinding { bool get(); };
public bool IsIPPortHostBinding { get; }
member this.IsIPPortHostBinding : bool
Public ReadOnly Property IsIPPortHostBinding As Boolean
Property Value
true
if the binding is bound to an IP port; otherwise, false
.
Examples
The following example demonstrates the IsIPPortHostBinding property. This code example is part of a larger example provided for the Binding Class.
bindingdisplay = bindingdisplay + "\n IsIPPortHostBinding: " + binding.IsIPPortHostBinding;