Example #1
0
 public static Uri GetRootSiteUrlFromServiceInfo(XmlDocument doc, ITracer tracer)
 {
     if (doc == null)
     {
         tracer.TraceDebug(0L, "GetRootSiteUrlFromServiceInfo: doc is null");
         return(null);
     }
     return(ServiceInfoParser.GetRootSiteUrlFromServiceInfo(doc.DocumentElement, tracer));
 }
Example #2
0
 public static Uri GetWindowsIntuneUrlFromServiceInfo(XmlElement element, ITracer tracer)
 {
     return(ServiceInfoParser.GetServiceParameterUrlFromServiceInfo(element, tracer, "ODMSENDPOINTURL", string.Empty));
 }
Example #3
0
 public static Uri GetRootSiteUrlFromServiceInfo(XmlElement root, ITracer tracer)
 {
     return(ServiceInfoParser.GetServiceParameterUrlFromServiceInfo(root, tracer, "SPO_ROOTSITEURL", "http://schemas.microsoft.com/online/serviceextensions/2009/08/ExtensibilitySchema.xsd"));
 }