DateTimeFormatInfo.RFC1123Pattern Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Ottiene la stringa di formato personalizzata per un valore di data e ora basato sulla specifica IETF (Internet Engineering Task Force) RFC (Request for Comments) 1123.
public:
property System::String ^ RFC1123Pattern { System::String ^ get(); };
public string RFC1123Pattern { get; }
member this.RFC1123Pattern : string
Public ReadOnly Property RFC1123Pattern As String
Valore della proprietà
Stringa di formato personalizzata per un valore di ora basato sulla specifica IETF RFC 1123.
Esempio
Nell'esempio seguente viene visualizzato il valore di RFC1123Pattern per alcune impostazioni cultura.
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'
'
Commenti
La RFC1123Pattern proprietà definisce il formato specifico delle impostazioni cultura delle stringhe di data restituite dalle chiamate ai DateTime.ToString metodi e DateTimeOffset.ToString e dalle stringhe di formato composite fornite dalle stringhe di formato standard "r" e "R".
Il modello RFC1123 riflette uno standard definito e la proprietà è di sola lettura. Pertanto, è sempre lo stesso, indipendentemente dalle impostazioni cultura. La stringa di formato personalizzata è "ddd, dd MMM yyyy HH':'mm':'ss 'GMT".