EnableHttpStreaming Property

Returns or sets a Boolean value specifying whether the NetShow Unicast Manager Admin control will enable Http streaming. By default, this value is TRUE.

Syntax

NSUnicastMgr.EnableHttpStreaming

Example

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