Click or drag to resize

ServiceBindingFlags Enumeration

Directs how to find a service on a protocol. By default Public and NonPublic services for the supplied protocol, and Public services of the downstream protocols, are searched.

Namespace:  Demo3D.Net
Assembly:  Demo3D.IO (in Demo3D.IO.dll) Version: 15.0.2.11458
Syntax
C#
[FlagsAttribute]
public enum ServiceBindingFlags
Members
  Member nameValueDescription
Default0 Specifies no binding flag.
DeclaredOnly1 Specifies that only services declared at the level of the supplied protocol should be considered. Protocol services down the protocol stack are not considered.
Public4 Specifies that public services are to be included in the search.
NonPublic8 Specifies that non-public services are to be included in the search.
DontCreate16 Don't create the service if it hasn't already been created.
See Also