Profiles.ORNG.Utilities.OpenSocialManager.GetViewerURI C# (CSharp) Method

GetViewerURI() private method

private GetViewerURI ( ) : string
return string
        internal string GetViewerURI()
        {
            return this.viewerUri;
        }

Usage Example

Example #1
0
 // OntologyGadgets
 public PreparedGadget(GadgetSpec gadgetSpec, OpenSocialManager openSocialManager, string view, string optParams, string chromeId)
 {
     this.gadgetSpec        = gadgetSpec;
     this.openSocialManager = openSocialManager;
     this.securityToken     = SocketSendReceive(openSocialManager.GetViewerURI(), openSocialManager.GetOwnerURI(), gadgetSpec.GetGadgetURL());
     this.view      = view;
     this.chromeId  = chromeId;
     this.optParams = optParams == null || optParams.Trim() == string.Empty ? "{}" : optParams;
 }
All Usage Examples Of Profiles.ORNG.Utilities.OpenSocialManager::GetViewerURI