1 // Copyright 2004-2007 Castle Project - http://www.castleproject.org/
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
7 // http://www.apache.org/licenses/LICENSE-2.0
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
15 namespace Castle
.SvnHooks
21 /// This is the interface that is used
22 /// to access the repository directly.
24 public interface IRepository
27 /// This function returns a stream to the file
28 /// contents, the stream must allow seeking
31 /// <param name="path">The path within the repository for the file</param>
32 Stream
GetFileContents(String path
);
34 /// Many properties can have more than one value,
35 /// in which case a list will be returned. If no
36 /// property has been set null is returned.
38 /// <param name="path">The path to get a property from</param>
39 /// <param name="property">The property to get from the path</param>
40 /// <returns>The property value(s)</returns>
41 String
[] GetProperty(String path
, String property
);