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: 18.03.00
Syntax[FlagsAttribute]
public enum ServiceBindingFlags
Members| 
									 
								 | Member name | Value | Description | 
|---|
 | Default | 0 | 
            Specifies no binding flag.
             | 
 | DeclaredOnly | 1 | 
            Specifies that only services declared at the level of the supplied protocol
            should be considered. Protocol services down the protocol stack are not considered.
             | 
 | Public | 4 | 
            Specifies that public services are to be included in the search.
             | 
 | NonPublic | 8 | 
            Specifies that non-public services are to be included in the search.
             | 
 | DontCreate | 16 | 
            Don't create the service if it hasn't already been created.
             | 
See Also