public void Describe(Description description)
        {
            description.Title = "The described parent";
            description.Properties["Color"] = "Orange";
            description.Properties["Direction"] = "North";
            description.Properties["Name"] = "Max";

            description.AddChild("Child1 Something", new DescribedChild());
            description.AddChild("Child2 else", new DescribedChild());
            description.AddChild("Child3", new DescribedChild());
        }
Example #2
0
 public void Describe(Description description)
 {
     description.Title = "Stateful Saga Node";
     description.ShortDescription = "Applies saga state loading and persistence within this chain";
     description.Properties["State Type"] = StateType.FullName;
     description.Properties["Message Type"] = MessageType.FullName;
     description.AddChild("Repository", Repository);
 }
Example #3
0
 public void Describe(Description description)
 {
     description.Title = _package.Id;
     description.ShortDescription = _exception.Message;
     description.AddChild("Stacktrace", _exception.StackTrace);
 }
Example #4
0
 void DescribesItself.Describe(Description description)
 {
     description.Title = "Adds Http content compression";
     description.AddChild("Filter", _filter);
 }
Example #5
0
 public void Describe(Description description)
 {
     description.Title = "Chain Filter Added";
     description.AddChild("Filter", _filter);
 }
Example #6
0
        public void Describe(Description description)
        {
            description.ShortDescription = "Assembly:  " + _assembly.GetName().Name;
            description.Properties["Assembly"] = _assembly.GetName().FullName;

            description.AddChild("Inner", _inner.Value);
        }
 public void Describe(Description description)
 {
     description.Title = "ActionSource";
     description.AddChild("Source", _source);
 }