//----------------------------------------------------------------------- // // Copyright (c) Outercurve Foundation. All rights reserved. // //----------------------------------------------------------------------- namespace DotNetOpenAuth.Messaging.Reflection { /// /// A message part encoder that has a special encoding for a null value. /// public interface IMessagePartNullEncoder : IMessagePartEncoder { /// /// Gets the string representation to include in a serialized message /// when the message part has a null value. /// string EncodedNullValue { get; } } }