@@ -965,7 +965,7 @@ public override Frame Clone ()
965965 /// generic way or getting and setting pictures which is preferable
966966 /// to format specific code.</para>
967967 /// </remarks>
968- [ Obsolete ( "Use AttachementFrame instead" ) ]
968+ [ Obsolete ( "Use AttachmentFrame instead" ) ]
969969 public class AttachedPictureFrame : AttachmentFrame
970970 {
971971 #region Constructors
@@ -974,7 +974,7 @@ public class AttachedPictureFrame : AttachmentFrame
974974 /// cref="AttachmentFrame" /> with no contents and the
975975 /// default values.
976976 /// </summary>
977- [ Obsolete ( "Use AttachementFrame instead" ) ]
977+ [ Obsolete ( "Use AttachmentFrame instead" ) ]
978978 public AttachedPictureFrame ( )
979979 {
980980 }
@@ -1025,7 +1025,7 @@ public AttachedPictureFrame ()
10251025 /// }
10261026 /// </code>
10271027 /// </example>
1028- [ Obsolete ( "Use AttachementFrame instead" ) ]
1028+ [ Obsolete ( "Use AttachmentFrame instead" ) ]
10291029 public AttachedPictureFrame ( IPicture picture )
10301030 : base ( picture )
10311031 {
@@ -1046,7 +1046,7 @@ public AttachedPictureFrame (IPicture picture)
10461046 /// A <see cref="byte" /> indicating the ID3v2 version the
10471047 /// raw frame is encoded in.
10481048 /// </param>
1049- [ Obsolete ( "Use AttachementFrame instead" ) ]
1049+ [ Obsolete ( "Use AttachmentFrame instead" ) ]
10501050 public AttachedPictureFrame ( ByteVector data , byte version )
10511051 : base ( data , version )
10521052 {
@@ -1073,7 +1073,7 @@ public AttachedPictureFrame (ByteVector data, byte version)
10731073 /// A <see cref="byte" /> indicating the ID3v2 version the
10741074 /// raw frame is encoded in.
10751075 /// </param>
1076- [ Obsolete ( "Use AttachementFrame instead" ) ]
1076+ [ Obsolete ( "Use AttachmentFrame instead" ) ]
10771077 protected internal AttachedPictureFrame ( ByteVector data , int offset , FrameHeader header , byte version )
10781078 : base ( data , offset , header , version )
10791079 {
@@ -1092,7 +1092,7 @@ protected internal AttachedPictureFrame (ByteVector data, int offset, FrameHeade
10921092 /// used for storing files and other objects relevant to the file but
10931093 /// not supported by other frames.</para>
10941094 /// </remarks>
1095- [ Obsolete ( "Use AttachementFrame instead" ) ]
1095+ [ Obsolete ( "Use AttachmentFrame instead" ) ]
10961096 public class GeneralEncapsulatedObjectFrame : AttachmentFrame
10971097 {
10981098
@@ -1103,7 +1103,7 @@ public class GeneralEncapsulatedObjectFrame : AttachmentFrame
11031103 /// cref="GeneralEncapsulatedObjectFrame" /> with no
11041104 /// contents.
11051105 /// </summary>
1106- [ Obsolete ( "Use AttachementFrame instead" ) ]
1106+ [ Obsolete ( "Use AttachmentFrame instead" ) ]
11071107 public GeneralEncapsulatedObjectFrame ( )
11081108 {
11091109 Type = PictureType . NotAPicture ;
@@ -1122,7 +1122,7 @@ public GeneralEncapsulatedObjectFrame ()
11221122 /// A <see cref="byte" /> indicating the ID3v2 version the
11231123 /// raw frame is encoded in.
11241124 /// </param>
1125- [ Obsolete ( "Use AttachementFrame instead" ) ]
1125+ [ Obsolete ( "Use AttachmentFrame instead" ) ]
11261126 public GeneralEncapsulatedObjectFrame ( ByteVector data , byte version )
11271127 : base ( data , version )
11281128 {
@@ -1151,7 +1151,7 @@ public GeneralEncapsulatedObjectFrame (ByteVector data, byte version)
11511151 /// A <see cref="byte" /> indicating the ID3v2 version the
11521152 /// raw frame is encoded in.
11531153 /// </param>
1154- [ Obsolete ( "Use AttachementFrame instead" ) ]
1154+ [ Obsolete ( "Use AttachmentFrame instead" ) ]
11551155 protected internal GeneralEncapsulatedObjectFrame ( ByteVector data , int offset , FrameHeader header , byte version )
11561156 : base ( data , offset , header , version )
11571157 {
@@ -1172,7 +1172,7 @@ protected internal GeneralEncapsulatedObjectFrame (ByteVector data, int offset,
11721172 /// A <see cref="string" /> containing the file name of the
11731173 /// object stored in the current instance.
11741174 /// </value>
1175- [ Obsolete ( "Use AttachementFrame instead" ) ]
1175+ [ Obsolete ( "Use AttachmentFrame instead" ) ]
11761176 public string FileName {
11771177 get {
11781178 if ( Filename != null )
@@ -1191,7 +1191,7 @@ public string FileName {
11911191 /// A <see cref="ByteVector" /> containing the object data
11921192 /// stored in the current instance.
11931193 /// </value>
1194- [ Obsolete ( "Use AttachementFrame instead" ) ]
1194+ [ Obsolete ( "Use AttachmentFrame instead" ) ]
11951195 public ByteVector Object {
11961196 get { return Data ?? new ByteVector ( ) ; }
11971197 set { Data = value ; }
0 commit comments