コード例 #1
0
ファイル: Repository.cs プロジェクト: kkl713/GitSharp
 /// <summary>
 ///
 /// </summary>
 /// <param name="windowCursor">
 /// Temporary working space associated with the calling thread.
 /// </param>
 /// <param name="id">SHA-1 of an object.</param>
 /// <returns>
 /// A <see cref="ObjectLoader"/> for accessing the data of the named
 /// object, or null if the object does not exist.
 /// </returns>
 public ObjectLoader OpenObject(WindowCursor windowCursor, AnyObjectId id)
 {
     return(_objectDatabase.openObject(windowCursor, id));
 }