Internal_Status() private method

private Internal_Status ( Asset assets, bool recursively ) : Task
assets Asset
recursively bool
return Task
示例#1
0
 public static Task Status(Asset asset, bool recursively)
 {
     return(Provider.Internal_Status(new Asset[]
     {
         asset
     }, recursively));
 }
示例#2
0
 public static Task Status(Asset asset)
 {
     return(Provider.Internal_Status(new Asset[]
     {
         asset
     }, true));
 }
示例#3
0
 /// <summary>
 ///   <para>Start a task that will fetch the most recent status from revision control system.</para>
 /// </summary>
 /// <param name="assets">The assets fetch new state for.</param>
 /// <param name="asset">The asset path to fetch new state for.</param>
 /// <param name="recursively">If any assets specified are folders this flag will get status for all descendants of the folder as well.</param>
 public static Task Status(AssetList assets, bool recursively)
 {
     return(Provider.Internal_Status(assets.ToArray(), recursively));
 }
示例#4
0
 /// <summary>
 ///   <para>Start a task that will fetch the most recent status from revision control system.</para>
 /// </summary>
 /// <param name="assets">The assets fetch new state for.</param>
 /// <param name="asset">The asset path to fetch new state for.</param>
 /// <param name="recursively">If any assets specified are folders this flag will get status for all descendants of the folder as well.</param>
 public static Task Status(AssetList assets)
 {
     return(Provider.Internal_Status(assets.ToArray(), true));
 }