@@ -965,7 +965,7 @@ public override Frame Clone ()
965
965
/// generic way or getting and setting pictures which is preferable
966
966
/// to format specific code.</para>
967
967
/// </remarks>
968
- [ Obsolete ( "Use AttachementFrame instead" ) ]
968
+ [ Obsolete ( "Use AttachmentFrame instead" ) ]
969
969
public class AttachedPictureFrame : AttachmentFrame
970
970
{
971
971
#region Constructors
@@ -974,7 +974,7 @@ public class AttachedPictureFrame : AttachmentFrame
974
974
/// cref="AttachmentFrame" /> with no contents and the
975
975
/// default values.
976
976
/// </summary>
977
- [ Obsolete ( "Use AttachementFrame instead" ) ]
977
+ [ Obsolete ( "Use AttachmentFrame instead" ) ]
978
978
public AttachedPictureFrame ( )
979
979
{
980
980
}
@@ -1025,7 +1025,7 @@ public AttachedPictureFrame ()
1025
1025
/// }
1026
1026
/// </code>
1027
1027
/// </example>
1028
- [ Obsolete ( "Use AttachementFrame instead" ) ]
1028
+ [ Obsolete ( "Use AttachmentFrame instead" ) ]
1029
1029
public AttachedPictureFrame ( IPicture picture )
1030
1030
: base ( picture )
1031
1031
{
@@ -1046,7 +1046,7 @@ public AttachedPictureFrame (IPicture picture)
1046
1046
/// A <see cref="byte" /> indicating the ID3v2 version the
1047
1047
/// raw frame is encoded in.
1048
1048
/// </param>
1049
- [ Obsolete ( "Use AttachementFrame instead" ) ]
1049
+ [ Obsolete ( "Use AttachmentFrame instead" ) ]
1050
1050
public AttachedPictureFrame ( ByteVector data , byte version )
1051
1051
: base ( data , version )
1052
1052
{
@@ -1073,7 +1073,7 @@ public AttachedPictureFrame (ByteVector data, byte version)
1073
1073
/// A <see cref="byte" /> indicating the ID3v2 version the
1074
1074
/// raw frame is encoded in.
1075
1075
/// </param>
1076
- [ Obsolete ( "Use AttachementFrame instead" ) ]
1076
+ [ Obsolete ( "Use AttachmentFrame instead" ) ]
1077
1077
protected internal AttachedPictureFrame ( ByteVector data , int offset , FrameHeader header , byte version )
1078
1078
: base ( data , offset , header , version )
1079
1079
{
@@ -1092,7 +1092,7 @@ protected internal AttachedPictureFrame (ByteVector data, int offset, FrameHeade
1092
1092
/// used for storing files and other objects relevant to the file but
1093
1093
/// not supported by other frames.</para>
1094
1094
/// </remarks>
1095
- [ Obsolete ( "Use AttachementFrame instead" ) ]
1095
+ [ Obsolete ( "Use AttachmentFrame instead" ) ]
1096
1096
public class GeneralEncapsulatedObjectFrame : AttachmentFrame
1097
1097
{
1098
1098
@@ -1103,7 +1103,7 @@ public class GeneralEncapsulatedObjectFrame : AttachmentFrame
1103
1103
/// cref="GeneralEncapsulatedObjectFrame" /> with no
1104
1104
/// contents.
1105
1105
/// </summary>
1106
- [ Obsolete ( "Use AttachementFrame instead" ) ]
1106
+ [ Obsolete ( "Use AttachmentFrame instead" ) ]
1107
1107
public GeneralEncapsulatedObjectFrame ( )
1108
1108
{
1109
1109
Type = PictureType . NotAPicture ;
@@ -1122,7 +1122,7 @@ public GeneralEncapsulatedObjectFrame ()
1122
1122
/// A <see cref="byte" /> indicating the ID3v2 version the
1123
1123
/// raw frame is encoded in.
1124
1124
/// </param>
1125
- [ Obsolete ( "Use AttachementFrame instead" ) ]
1125
+ [ Obsolete ( "Use AttachmentFrame instead" ) ]
1126
1126
public GeneralEncapsulatedObjectFrame ( ByteVector data , byte version )
1127
1127
: base ( data , version )
1128
1128
{
@@ -1151,7 +1151,7 @@ public GeneralEncapsulatedObjectFrame (ByteVector data, byte version)
1151
1151
/// A <see cref="byte" /> indicating the ID3v2 version the
1152
1152
/// raw frame is encoded in.
1153
1153
/// </param>
1154
- [ Obsolete ( "Use AttachementFrame instead" ) ]
1154
+ [ Obsolete ( "Use AttachmentFrame instead" ) ]
1155
1155
protected internal GeneralEncapsulatedObjectFrame ( ByteVector data , int offset , FrameHeader header , byte version )
1156
1156
: base ( data , offset , header , version )
1157
1157
{
@@ -1172,7 +1172,7 @@ protected internal GeneralEncapsulatedObjectFrame (ByteVector data, int offset,
1172
1172
/// A <see cref="string" /> containing the file name of the
1173
1173
/// object stored in the current instance.
1174
1174
/// </value>
1175
- [ Obsolete ( "Use AttachementFrame instead" ) ]
1175
+ [ Obsolete ( "Use AttachmentFrame instead" ) ]
1176
1176
public string FileName {
1177
1177
get {
1178
1178
if ( Filename != null )
@@ -1191,7 +1191,7 @@ public string FileName {
1191
1191
/// A <see cref="ByteVector" /> containing the object data
1192
1192
/// stored in the current instance.
1193
1193
/// </value>
1194
- [ Obsolete ( "Use AttachementFrame instead" ) ]
1194
+ [ Obsolete ( "Use AttachmentFrame instead" ) ]
1195
1195
public ByteVector Object {
1196
1196
get { return Data ?? new ByteVector ( ) ; }
1197
1197
set { Data = value ; }
0 commit comments