DateTimeFormatInfo.RFC1123Pattern Propriedade
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Obtém a cadeia de caracteres de formato personalizado para um valor temporal baseado na especificação RFC (Request for Comments) 1123 da IETF (Internet Engineering Task Force).
public:
property System::String ^ RFC1123Pattern { System::String ^ get(); };
public string RFC1123Pattern { get; }
member this.RFC1123Pattern : string
Public ReadOnly Property RFC1123Pattern As String
Valor da propriedade
A cadeia de caracteres de formato personalizado para um valor temporal baseado na especificação IETF RFC 1123.
Exemplos
O exemplo a seguir exibe o valor de RFC1123Pattern para algumas culturas.
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'
*/
using System;
using System.Globalization;
public class SamplesDTFI {
public static void Main() {
// Displays the values of the pattern properties.
Console.WriteLine( " CULTURE PROPERTY VALUE" );
PrintPattern( "en-US" );
PrintPattern( "ja-JP" );
PrintPattern( "fr-FR" );
}
public static void PrintPattern( String myCulture ) {
DateTimeFormatInfo myDTFI = new CultureInfo( myCulture, false ).DateTimeFormat;
Console.WriteLine( " {0} {1}", myCulture, myDTFI.RFC1123Pattern );
}
}
/*
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'
*/
Imports System.Globalization
Public Class SamplesDTFI
Public Shared Sub Main()
' Displays the values of the pattern properties.
Console.WriteLine(" CULTURE PROPERTY VALUE")
PrintPattern("en-US")
PrintPattern("ja-JP")
PrintPattern("fr-FR")
End Sub
Public Shared Sub PrintPattern(myCulture As [String])
Dim myDTFI As DateTimeFormatInfo = New CultureInfo(myCulture, False).DateTimeFormat
Console.WriteLine(" {0} {1}", myCulture, myDTFI.RFC1123Pattern)
End Sub
End Class
'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'
'
Comentários
A RFC1123Pattern propriedade define o formato específico da cultura de cadeias de caracteres de data que são retornadas por chamadas para os DateTime.ToString métodos e DateTimeOffset.ToString e por cadeias de caracteres de formato composto que são fornecidas as cadeias de caracteres de formato padrão "r" e "R".
O padrão RFC1123 reflete um padrão definido e a propriedade é somente leitura. Portanto, é sempre o mesmo, independentemente da cultura. A cadeia de caracteres de formato personalizado é "ddd, dd MMM aaaa HH':'mm':'ss 'GMT' ".