This documentation is archived and is not being maintained.
DateTimeFormatInfo::RFC1123Pattern Property
Visual Studio 2010
Gets the format pattern for a time value, which is based on the Internet Engineering Task Force (IETF) Request for Comments (RFC) 1123 specification and is associated with the "r" and "R" format patterns.
Assembly: mscorlib (in mscorlib.dll)
Property Value
Type: System::StringThe format pattern for a time value, which is based on the IETF RFC 1123 specification and is associated with the "r" and "R" format patterns.
The following example displays the value of RFC1123Pattern for a few cultures.
using namespace System; using namespace System::Globalization; void PrintPattern( String^ myCulture ) { CultureInfo^ MyCI = gcnew CultureInfo( myCulture,false ); DateTimeFormatInfo^ myDTFI = MyCI->DateTimeFormat; Console::WriteLine( " {0} {1}", myCulture, myDTFI->RFC1123Pattern ); } int main() { // Displays the values of the pattern properties. Console::WriteLine( " CULTURE PROPERTY VALUE" ); PrintPattern( "en-US" ); PrintPattern( "ja-JP" ); PrintPattern( "fr-FR" ); } /* This code produces the following output. CULTURE PROPERTY VALUE en-US ddd, dd MMM yyyy HH':'mm':'ss 'GMT' ja-JP ddd, dd MMM yyyy HH':'mm':'ss 'GMT' fr-FR ddd, dd MMM yyyy HH':'mm':'ss 'GMT' */
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: