@@ -217,16 +217,15 @@ public object? this[string attributeName]
217217 /// and the 'schemaurl'. It is encoded into a media format which is specified by the
218218 /// 'contenttype' attribute (e.g. application/json).
219219 /// </summary>
220- /// <see href="https://github.com/cloudevents/spec/blob/master/ spec.md#data-1 "/>
220+ /// <see href="https://github.com/cloudevents/spec/blob/main/cloudevents/ spec.md#event-data "/>
221221 public object ? Data { get ; set ; }
222222
223223 /// <summary>
224- /// CloudEvent <see href="https://github.com/cloudevents/spec/blob/master/ spec.md#id ">'datacontenttype'</see> attribute.
224+ /// CloudEvent <see href="https://github.com/cloudevents/spec/blob/main/cloudevents/ spec.md#datacontenttype ">'datacontenttype'</see> attribute.
225225 /// This is the content type of the <see cref="Data"/> property.
226226 /// This attribute enables the data attribute to carry any type of content, where the
227227 /// format and encoding might differ from that of the chosen event format.
228228 /// </summary>
229- /// <see href="https://github.com/cloudevents/spec/blob/master/spec.md#contenttype"/>
230229 public string ? DataContentType
231230 {
232231 // TODO: Guard against a version that doesn't have this attribute?
@@ -235,7 +234,7 @@ public string? DataContentType
235234 }
236235
237236 /// <summary>
238- /// CloudEvent <see href="https://github.com/cloudevents/spec/blob/master /spec.md#id">'id'</see> attribute,
237+ /// CloudEvent <see href="https://github.com/cloudevents/spec/blob/main/cloudevents /spec.md#id">'id'</see> attribute,
239238 /// This is the ID of the event. When combined with <see cref="Source"/>, this enables deduplication.
240239 /// </summary>
241240 public string ? Id
@@ -245,7 +244,7 @@ public string? Id
245244 }
246245
247246 /// <summary>
248- /// CloudEvents <see href="https://github.com/cloudevents/spec/blob/master /spec.md#dataschema">'dataschema'</see> attribute.
247+ /// CloudEvents <see href="https://github.com/cloudevents/spec/blob/main/cloudevents /spec.md#dataschema">'dataschema'</see> attribute.
249248 /// A link to the schema that the data attribute adheres to.
250249 /// Incompatible changes to the schema SHOULD be reflected by a different URI.
251250 /// </summary>
@@ -256,7 +255,7 @@ public Uri? DataSchema
256255 }
257256
258257 /// <summary>
259- /// CloudEvents <see href="https://github.com/cloudevents/spec/blob/master /spec.md#source">'source'</see> attribute.
258+ /// CloudEvents <see href="https://github.com/cloudevents/spec/blob/main/cloudevents /spec.md#source">'source'</see> attribute.
260259 /// This describes the event producer. Often this will include information such as the type of the event source, the
261260 /// organization publishing the event, the process that produced the event, and some unique identifiers.
262261 /// When combined with <see cref="Id"/>, this enables deduplication.
@@ -273,7 +272,7 @@ public Uri? Source
273272 // new CloudEvent(attributes.WithSpecVersion(newSpecVersion), Extensions.Values);
274273
275274 /// <summary>
276- /// CloudEvents <see href="https://github.com/cloudevents/spec/blob/master /spec.md#subject">'subject'</see> attribute.
275+ /// CloudEvents <see href="https://github.com/cloudevents/spec/blob/main/cloudevents /spec.md#subject">'subject'</see> attribute.
277276 /// This describes the subject of the event in the context of the event producer (identified by <see cref="Source"/>).
278277 /// In publish-subscribe scenarios, a subscriber will typically subscribe to events emitted by a source,
279278 /// but the source identifier alone might not be sufficient as a qualifier for any specific event if the source context has
@@ -286,7 +285,7 @@ public string? Subject
286285 }
287286
288287 /// <summary>
289- /// CloudEvents <see href="https://github.com/cloudevents/spec/blob/master /spec.md#time">'time'</see> attribute.
288+ /// CloudEvents <see href="https://github.com/cloudevents/spec/blob/main/cloudevents /spec.md#time">'time'</see> attribute.
290289 /// Timestamp of when the occurrence happened.
291290 /// </summary>
292291 public DateTimeOffset ? Time
@@ -296,7 +295,7 @@ public DateTimeOffset? Time
296295 }
297296
298297 /// <summary>
299- /// CloudEvents <see href="https://github.com/cloudevents/spec/blob/master /spec.md#type">'type'</see> attribute.
298+ /// CloudEvents <see href="https://github.com/cloudevents/spec/blob/main/cloudevents /spec.md#type">'type'</see> attribute.
300299 /// Type of occurrence which has happened.
301300 /// Often this attribute is used for routing, observability, policy enforcement, etc.
302301 /// </summary>
0 commit comments