TcpServerChannel.StartListening(Object) Method
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.
Instructs the current channel to start listening on a channel after the StopListening(Object) method has been called to stop listening on the channel.
public:
virtual void StartListening(System::Object ^ data);
public void StartListening (object data);
abstract member StartListening : obj -> unit
override this.StartListening : obj -> unit
Public Sub StartListening (data As Object)
Parameters
- data
- Object
Optional initialization information.
Implements
Remarks
The TcpServerChannel constructor automatically calls StartListening
, so you shouldn't call this method unless StopListening was previously called.
Calling StartListening
on an already listening channel may lead to unexpected behaviors and should be avoided.
If your channel uses a dynamically assigned port number, your port number might change when you restart listening.
The data object can be used to pass a specific initialization state to the channel. If you do not want to pass a specific state to the channel, set data
to null
.