當前位置: 首頁>>代碼示例>>C#>>正文


C# AnyObjectId.CopyRawTo方法代碼示例

本文整理匯總了C#中NGit.AnyObjectId.CopyRawTo方法的典型用法代碼示例。如果您正苦於以下問題:C# AnyObjectId.CopyRawTo方法的具體用法?C# AnyObjectId.CopyRawTo怎麽用?C# AnyObjectId.CopyRawTo使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在NGit.AnyObjectId的用法示例。


在下文中一共展示了AnyObjectId.CopyRawTo方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: SetObjectId

 /// <summary>Set the ObjectId for the entry.</summary>
 /// <remarks>Set the ObjectId for the entry.</remarks>
 /// <param name="id">
 /// new object identifier for the entry. May be
 /// <see cref="NGit.ObjectId.ZeroId()">NGit.ObjectId.ZeroId()</see>
 /// to remove the current identifier.
 /// </param>
 public virtual void SetObjectId(AnyObjectId id)
 {
     id.CopyRawTo(IdBuffer, IdOffset);
 }
開發者ID:sharwell,項目名稱:ngit,代碼行數:11,代碼來源:DirCacheEntry.cs

示例2: Append

		/// <summary>Append any entry to the tree.</summary>
		/// <remarks>Append any entry to the tree.</remarks>
		/// <param name="nameBuf">
		/// buffer holding the name of the entry. The name should be UTF-8
		/// encoded, but file name encoding is not a well defined concept
		/// in Git.
		/// </param>
		/// <param name="namePos">
		/// first position within
		/// <code>nameBuf</code>
		/// of the name data.
		/// </param>
		/// <param name="nameLen">
		/// number of bytes from
		/// <code>nameBuf</code>
		/// to use as the name.
		/// </param>
		/// <param name="mode">
		/// mode describing the treatment of
		/// <code>id</code>
		/// .
		/// </param>
		/// <param name="id">the ObjectId to store in this entry.</param>
		public virtual void Append(byte[] nameBuf, int namePos, int nameLen, FileMode mode
			, AnyObjectId id)
		{
			if (FmtBuf(nameBuf, namePos, nameLen, mode))
			{
				id.CopyRawTo(buf, ptr);
				ptr += Constants.OBJECT_ID_LENGTH;
			}
			else
			{
				try
				{
					FmtOverflowBuffer(nameBuf, namePos, nameLen, mode);
					id.CopyRawTo(overflowBuffer);
				}
				catch (IOException badBuffer)
				{
					// This should never occur.
					throw new RuntimeException(badBuffer);
				}
			}
		}
開發者ID:nickname100,項目名稱:monodevelop,代碼行數:45,代碼來源:TreeFormatter.cs


注:本文中的NGit.AnyObjectId.CopyRawTo方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。