Lines Matching refs:FieldMask
42 /// <para>A tree representation of a FieldMask. Each leaf node in this tree represent
43 /// a field path in the FieldMask.</para>
45 /// <para>For example, FieldMask "foo.bar,foo.baz,bar.baz" as a tree will be:</para>
55 /// a FieldMask to a canonical form, merge two FieldMasks, calculate the
57 /// FieldMask in a message tree.</para>
78 /// Creates a FieldMaskTree for a given FieldMask.
80 public FieldMaskTree(FieldMask mask)
91 /// Adds a field path to the tree. In a FieldMask, every field path matches the
139 /// Merges all field paths in a FieldMask into this tree.
141 public FieldMaskTree MergeFromFieldMask(FieldMask mask)
152 /// Converts this tree to a FieldMask.
154 public FieldMask ToFieldMask()
156 var mask = new FieldMask();
231 public void Merge(IMessage source, IMessage destination, FieldMask.MergeOptions options)
254 FieldMask.MergeOptions options)