EnableHttpStreaming Property

Returns or sets a Boolean value specifying whether the NetShow Station Manager Control will enable HTTP streaming. By default, this value is TRUE.

Syntax

NSUnicastMgr.EnableHttpStreaming

Example

Sub ToggleHttpStreaming
  ' Turns HTTP streaming on or off
   If NSChannelMgr.EnableHttpStreaming = True Then
      NSChannelMgr.EnableHttpStreaming = False
   Else
      NSChannelMgr.EnableHttpStreaming = True
   End If
   MsgBox( "HttpStreaming value: " & NSChannelMgr.EnableHttpStreaming)
End Sub
© 1996-1998 Microsoft Corporation. All rights reserved.