// Token: 0x060008A8 RID: 2216 RVA: 0x0003BA20 File Offset: 0x00039C20 public bool Equals(INodeInfo other) { if (this.node.Equals(other)) { string shareId = this.ShareId; PublicNode publicNode = other as PublicNode; return(shareId == ((publicNode != null) ? publicNode.ShareId : null)); } return(false); }
public DownloadUrlRequest(INode node) : base("g") { this.Id = node.Id; PublicNode publicNode = node as PublicNode; if (publicNode != null) { this.QueryArguments["n"] = publicNode.ShareId; } }