You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@avro.apache.org by mg...@apache.org on 2022/02/04 09:21:41 UTC

[avro] branch master updated: AVRO-3360 Updated XML documentation (#1511)

This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/avro.git


The following commit(s) were added to refs/heads/master by this push:
     new f9cceed  AVRO-3360 Updated XML documentation (#1511)
f9cceed is described below

commit f9cceedeb46bf3c0b48ad21acb2c5f8778bfc9d8
Author: Kyle Schoonover <ky...@minmaxcorp.com>
AuthorDate: Fri Feb 4 01:20:58 2022 -0800

    AVRO-3360 Updated XML documentation (#1511)
    
    * AVRO-3360 Updated XML documentation
    
    * Revert "AVRO-3360 Updated XML documentation"
    
    This reverts commit b8601c072a5083380d30b580804dd0908b8cf4cc.
    
    * Revert "Revert "AVRO-3360 Updated XML documentation""
    
    This reverts commit d01699aaf573d8c8efafa80377dfbf3806218fae.
    
    Co-authored-by: Kyle T. Schoonover <Ky...@nordstrom.com>
---
 lang/csharp/src/apache/main/File/Header.cs | 19 +++++++++++++++----
 1 file changed, 15 insertions(+), 4 deletions(-)

diff --git a/lang/csharp/src/apache/main/File/Header.cs b/lang/csharp/src/apache/main/File/Header.cs
index 1ad2216..5cdcfd3 100644
--- a/lang/csharp/src/apache/main/File/Header.cs
+++ b/lang/csharp/src/apache/main/File/Header.cs
@@ -25,22 +25,33 @@ namespace Avro.File
     public class Header
     {
         /// <summary>
-        /// Metadata in this header.
+        /// Gets the metadata in this header.
         /// </summary>
+        /// <value>
+        /// The metadata.
+        /// </value>
         public IDictionary<string, byte[]> MetaData { get; }
 
+
         /// <summary>
-        /// Sync token.
+        /// Gets the synchronize token.
         /// </summary>
+        /// <value>
+        /// The synchronize token.
+        /// </value>
         public byte[] SyncData { get; }
 
+
         /// <summary>
-        /// Avro schema.
+        /// Gets or sets the schema.
         /// </summary>
+        /// <value>
+        /// The schema.
+        /// </value>
         public Schema Schema { get; set; }
 
         /// <summary>
-        /// Initializes a new instance of the <see cref="Header"/> class.
+        /// Initializes a new instance of the <see cref="Header" /> class.
         /// </summary>
         public Header()
         {