Skip to content

Commit

Permalink
Fix some missing DynamicProxy XML documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
jonorossi committed Aug 5, 2016
1 parent 3d34c83 commit 40c6c40
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 9 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Breaking Changes:
Enhancements:
* Add IProxyGenerator interface for the ProxyGenerator class (#215)

## 4.0.0-beta001 (2016-07-17, [diff](https://github.com/castleproject/Core/compare/v4.0.0-alpha001...v4.0.0-beta001))
## 4.0.0-beta001 (2016-07-17)

Breaking Changes:
* Update to log4net 1.2.15/2.0.5 (#199)
Expand All @@ -22,7 +22,7 @@ Enhancements:
Bugfixes:
* Fix target framework moniker in NuGet package for .NET Core (#174)

## 4.0.0-alpha001 (2016-04-07, [diff](https://github.com/castleproject/Core/compare/v3.3.3...v4.0.0-alpha001))
## 4.0.0-alpha001 (2016-04-07)

Breaking Changes:
* Remove all Silverlight support (#100, #150)
Expand All @@ -42,7 +42,7 @@ Bugfixes:
* Fix ProxyGenerator cache does not take into account AdditionalAttributes (@cmerat, #77, #78)
* Fix Castle.Services.Logging.SerilogIntegration.dll missing some assembly info attributes (@imzshh, #20, #82)

## 3.3.3 (2014-11-06, [diff](http://github.com/castleproject/Core/compare/v3.3.2...v3.3.3))
## 3.3.3 (2014-11-06)
* Fix Serilog integration modifies LoggerConfiguration.MinimumLevel (#70)
* Add SourceContext to the Serilog logger (@KevivL, #69)

Expand Down
2 changes: 1 addition & 1 deletion src/Castle.Core/DynamicProxy/IAttributeDisassembler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ namespace Castle.DynamicProxy
using System.Reflection.Emit;

/// <summary>
/// Provides functionality for disassembling instances of attributes to CustomAttributeBuilder form, during the process of emiting new types by Dynamic Proxy.
/// Provides functionality for disassembling instances of attributes to CustomAttributeBuilder form, during the process of emiting new types by DynamicProxy.
/// </summary>
public interface IAttributeDisassembler
{
Expand Down
4 changes: 2 additions & 2 deletions src/Castle.Core/DynamicProxy/IChangeProxyTarget.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2004-2011 Castle Project - http://www.castleproject.org/
// Copyright 2004-2016 Castle Project - http://www.castleproject.org/
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand All @@ -17,7 +17,7 @@ namespace Castle.DynamicProxy
using System;

/// <summary>
/// Exposes means to change target objects of proxies and invocations
/// Exposes means to change target objects of proxies and invocations.
/// </summary>
public interface IChangeProxyTarget
{
Expand Down
4 changes: 2 additions & 2 deletions src/Castle.Core/DynamicProxy/IInterceptor.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2004-2011 Castle Project - http://www.castleproject.org/
// Copyright 2004-2016 Castle Project - http://www.castleproject.org/
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand All @@ -15,7 +15,7 @@
namespace Castle.DynamicProxy
{
/// <summary>
/// New interface that is going to be used by DynamicProxy 2
/// Provides the main DynamicProxy extension point that allows member interception.
/// </summary>
public interface IInterceptor
{
Expand Down
6 changes: 5 additions & 1 deletion src/Castle.Core/DynamicProxy/IProxyTargetAccessor.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2004-2011 Castle Project - http://www.castleproject.org/
// Copyright 2004-2016 Castle Project - http://www.castleproject.org/
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand All @@ -14,6 +14,10 @@

namespace Castle.DynamicProxy
{
/// <summary>
/// Exposes access to the target object and interceptors of proxy objects.
/// This is a DynamicProxy infrastructure interface and should not be implemented yourself.
/// </summary>
public interface IProxyTargetAccessor
{
/// <summary>
Expand Down

0 comments on commit 40c6c40

Please sign in to comment.