/// <summary>
 /// Indicates vendor specific UPNP error code of 877.
 /// </summary>
 public Error_CannotSetContentUri(ProtocolInfoString protocolInfo, string contentUri)
     : base(877, "Cannot set the contentUri (" + contentUri + ") to a string beginning with (" + MediaResource.AUTOMAPFILE + ") if the protocolInfo (" + protocolInfo.ToString() + ") does not indicate a protocol of \"http-get\"")
 {
     this.ContentUri   = contentUri;
     this.ProtocolInfo = protocolInfo;
 }
 /// <summary>
 /// Indicates vendor specific UPNP error code of 876.
 /// </summary>
 /// <param name="contentUri">The contentUri value of the MediaResource when the protocolInfo modification was attempted.</param>
 /// <param name="protocolInfo">The value of the intended protocolInfo string.</param>
 public Error_CannotSetProtocolInfo(string contentUri, ProtocolInfoString protocolInfo)
     : base(876, "Cannot set the protocolInfo string (" + protocolInfo.ToString() + ") to something other than \"http-get\", if the contentUri value starts with (" + MediaResource.AUTOMAPFILE + ").")
 {
     this.ContentUri   = contentUri;
     this.ProtocolInfo = protocolInfo;
 }