示例#1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="RestMSJoin"/> class.
 /// </summary>
 /// <param name="join">The join.</param>
 public RestMSJoin(Join join)
 {
     Name = join.Name.Value;
     Type = join.Type.ToString();
     Address = join.Address.Value;
     Feed = join.FeedHref.AbsoluteUri;
 }
示例#2
0
文件: Pipe.cs 项目: rudygt/Paramore
 public void AddJoin(Join join)
 {
     _joins.Add(join);
 }
示例#3
0
 protected bool Equals(Join other)
 {
     return(Name == other.Name);
 }
示例#4
0
 protected bool Equals(Join other)
 {
     return Name == other.Name;
 }
示例#5
0
 /// <summary>
 /// Adds the join to the <see cref="Joins"/> collection.
 /// </summary>
 /// <param name="join">The join.</param>
 public void AddJoin(Join join)
 {
     Joins[join.Address] = new Join[] { join };
 }
示例#6
0
 public void AddJoin(Join join)
 {
     _joins.Add(join);
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="Command"/> class.
 /// </summary>
 /// <param name="join">The join.</param>
 public AddJoinCommand(Join join) : base(Guid.NewGuid())
 {
     Join = join;
 }
示例#8
0
 /// <summary>
 /// Adds the join to the <see cref="Joins"/> collection.
 /// </summary>
 /// <param name="join">The join.</param>
 public void AddJoin(Join join)
 {
     Joins[join.Address] = new Join[] { join };
 }