Example #1
0
        public ProfileWithDefinition GetTrafficManagerProfileWithDefinition(string profileName)
        {
            Management.TrafficManager.Models.Profile profile = this.GetProfile(profileName).Profile;
            Definition definition = null;

            try
            {
                definition = this.GetDefinition(profileName).Definition;
            }
            catch (CloudException)
            {
            }
            return(new ProfileWithDefinition(profile, definition));
        }
 public SimpleProfile(Management.TrafficManager.Models.Profile profile)
 {
     this.profile = profile;
 }
Example #3
0
 public SimpleProfile(Management.TrafficManager.Models.Profile profile)
 {
     this.profile = profile;
 }
Example #4
0
 public ProfileWithDefinition(Management.TrafficManager.Models.Profile profile, Definition definition) : base(profile)
 {
     this.endpoints  = null;
     this.definition = definition;
 }