The Microsoft.Live.Messenger.UI.DelegatedAuthControl.Links property is a collection of URL strings for various Windows Live™ and Windows Live Messenger resources. This property is exposed through the DelegatedAuthControl property.
You can use the URLs provided by this property to display links to these resources on your Web site. URL strings for the following pages are available:
-
About Windows Live Messenger
-
Change Account
-
Privacy Statement
-
Send Feedback
-
Change Settings
-
Sign Up for a Windows Live ID
-
Terms of Use
The following code example demonstrates retrieving each URL string from the DelegatedAuthControl property.
var _delAuthControlLinks = _delAuthControl.get_links();
var aboutMessengerUrl = _delAuthControlLinks.get_aboutMessengerUrl();
var changeAccountUrl = _delAuthControlLinks.get_changeAccountUrl();
var privacyUrl = _delAuthControlLinks.get_privacyUrl();
var reportAbuseUrl = _delAuthControlLinks.get_reportAbuseUrl();
var settingsUrl = _delAuthControlLinks.get_settingsUrl();
var signUpUrl = _delAuthControlLinks.get_signUpUrl();
var termsOfUseUrl = _delAuthControlLinks.get_termsOfUseUrl();