Exemplo n.º 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));
        }
Exemplo n.º 2
0
 public SimpleProfile(Management.TrafficManager.Models.Profile profile)
 {
     this.profile = profile;
 }
Exemplo n.º 3
0
 public SimpleProfile(Management.TrafficManager.Models.Profile profile)
 {
     this.profile = profile;
 }
Exemplo n.º 4
0
 public ProfileWithDefinition(Management.TrafficManager.Models.Profile profile, Definition definition) : base(profile)
 {
     this.endpoints  = null;
     this.definition = definition;
 }