Protocols/MSNP/Activities/SDK/Techref/Objectmodel/Objects/User/Properties/Name: Difference between revisions
Jump to navigation
Jump to search
Animadoria (talk | contribs) (Created automatically by Anima Importer) |
Animadoria (talk | contribs) (Created automatically by Anima Importer) |
||
Line 1: | Line 1: | ||
<!-- Generated @ 08/12/2022 23: | <!-- Generated @ 08/12/2022 23:46:09 +01:00 using Anima's CHM converter based on techref/objectmodel/objects/user/properties/Name.htm --> | ||
{{Protocols/MSNP|section=Activities}} | {{Protocols/MSNP|section=Activities}} | ||
__NOTOC__= <a class="clsStd" href="/techref/objectmodel/objects/user/index.htm">User</a>.Name Property (Restricted) = | __NOTOC__= <a class="clsStd" href="/techref/objectmodel/objects/user/index.htm">User</a>.Name Property (Restricted) = |
Revision as of 22:46, 12 August 2022
<a class="clsStd" href="/techref/objectmodel/objects/user/index.htm">User</a>.Name Property (Restricted)
Requires PassportSiteID permission. Contains a string with the screen name of the user. This property is read-only.
VBScript Syntax
external.Users.Me.Name
JavaScript Syntax
window.external.Users.Me.Name
Property Value
Returns a string with the user name, as provided by the Microsoft® .NET Passport Unique ID (PUID) used to sign in.
JavaScript Example
var myUsers = window.external.Users; for ( i=0; i < myUsers.Count; i++ ) { document.write("User " + i + " is " + myUsers.Item(i).Name + "<br>"); }
produces this output
User 0 is Amber User 1 is Chris
Remarks
Use of this property is restricted by the PassportSiteID flag. An application that does not possess this flag is not able to read this information from MSN® Messenger. No error is thrown, and a blank value is returned.