예제 #1
0
 public IJEnumerable <JToken> this[object key]
 {
     get
     {
         return((IJEnumerable <JToken>) new JEnumerable <JToken>(Extensions.Values <T, JToken>(this._enumerable, key)));
     }
 }
예제 #2
0
 public IJEnumerable <JToken> this[object key]
 {
     get
     {
         if (this._enumerable == null)
         {
             return((JEnumerable <JToken>)JEnumerable <JToken> .Empty);
         }
         return(new JEnumerable <JToken>(Extensions.Values <T, JToken>(this._enumerable, key)));
     }
 }
예제 #3
0
 public static IEnumerable <U> Values <U>(this IEnumerable <JToken> source)
 {
     return(Extensions.Values <JToken, U>(source, (object)null));
 }
예제 #4
0
 public static IEnumerable <U> Values <U>(this IEnumerable <JToken> source, object key)
 {
     return(Extensions.Values <JToken, U>(source, key));
 }
예제 #5
0
 public static IJEnumerable <JToken> Values(this IEnumerable <JToken> source, object key)
 {
     return(Extensions.AsJEnumerable(Extensions.Values <JToken, JToken>(source, key)));
 }
예제 #6
0
 /// <summary>
 /// Gets the <see cref="IEnumerable{JToken}"/> with the specified key.
 /// </summary>
 /// <value></value>
 public IEnumerable <JToken> this[object key]
 {
     get { return(Extensions.Values <T, JToken>(_enumerable, key)); }
 }