Property MLWMFBaseComponent.TMLASFCredentials.UserName
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: TMLASFCredentials
Contents |
Syntax
Delphi:
property UserName : String read FUserName write FUserName;
C++ Builder:
__property String UserName = { read=FUserName, write=FUserName };
Summary
Login user name.
Description
Use this property to specify the login user name for the
credentials.
Delphi example:
VLASFPlayer1.Credentials.UserName := 'John Smith';
C++ Builder example:
VLASFPlayer1->Credentials->UserName = "John Smith";
Visual C++ MFC example:
VLASFPlayer1.Credentials.UserName = "John Smith";
Visual C++/CLI example:
asfPlayer1->Credentials->UserName = "John Smith";
C# example:
asfPlayer1.Credentials.UserName = "John Smith";
VB example:
ASFPlayer1.Credentials.UserName = "John Smith"