Property MLASFPlayer.TMLASFBasicPlayer.Timeout
From Mitov Wiki Doc
This is a Beta Read Only version of this page. Please review and send recommendations to mitov@mitov.com. We will enable the editing as soon as we are happy with the overall Wiki site.
Class: TMLASFBasicPlayer
Contents |
Syntax
Delphi:
property Timeout : Integer read FTimeout write FTimeout default 30000;
C++ Builder:
__property int Timeout = { read=FTimeout, write=FTimeout, default=30000 };
Summary
Timeout period for the component when opening remote streams.
Description
Use this property to specify the Timeout period in mS for the
component when opening remote streams.
Delphi example:
VLASFPlayer1.Timeout := 30000;
C++ Builder example:
VLASFPlayer1->Timeout = 30000;
Visual C++(MFC) example:
VLASFPlayer1.Timeout = 30000;
Visual C++/CLI example:
asfPlayer1->Timeout = 30000;
C# example:
asfPlayer1.Timeout = 30000;
VB example:
ASFPlayer1.Timeout = 30000