You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -177,6 +177,29 @@ public int Provider(IntPtr content, int max_length, IntPtr data)
177
177
}
178
178
}
179
179
180
+
/// <summary>
181
+
/// Inserts a <see cref="Blob"/> into the object database, created from the content of a stream.
182
+
/// <para>Optionally, git filters will be applied to the content before storing it.</para>
183
+
/// </summary>
184
+
/// <param name="stream">The stream from which will be read the content of the blob to be created.</param>
185
+
/// <returns>The created <see cref="Blob"/>.</returns>
186
+
publicvirtualBlobCreateBlob(Streamstream)
187
+
{
188
+
returnCreateBlob(stream,null,null);
189
+
}
190
+
191
+
/// <summary>
192
+
/// Inserts a <see cref="Blob"/> into the object database, created from the content of a stream.
193
+
/// <para>Optionally, git filters will be applied to the content before storing it.</para>
194
+
/// </summary>
195
+
/// <param name="stream">The stream from which will be read the content of the blob to be created.</param>
196
+
/// <param name="hintpath">The hintpath is used to determine what git filters should be applied to the object before it can be placed to the object database.</param>
197
+
/// <returns>The created <see cref="Blob"/>.</returns>
/// Inserts a <see cref="Blob"/> into the object database, created from the content of a stream.
182
205
/// <para>Optionally, git filters will be applied to the content before storing it.</para>
@@ -185,7 +208,12 @@ public int Provider(IntPtr content, int max_length, IntPtr data)
185
208
/// <param name="hintpath">The hintpath is used to determine what git filters should be applied to the object before it can be placed to the object database.</param>
186
209
/// <param name="numberOfBytesToConsume">The number of bytes to consume from the stream.</param>
187
210
/// <returns>The created <see cref="Blob"/>.</returns>
0 commit comments