SessionStateSection.SqlCommandTimeout Özellik
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
SQL Server oturum durumu modunu kullanarak SQL komutları için süre aşımını alır veya ayarlar.
public:
property TimeSpan SqlCommandTimeout { TimeSpan get(); void set(TimeSpan value); };
[System.ComponentModel.TypeConverter(typeof(System.Configuration.TimeSpanSecondsOrInfiniteConverter))]
[System.Configuration.ConfigurationProperty("sqlCommandTimeout", DefaultValue="00:00:30")]
public TimeSpan SqlCommandTimeout { get; set; }
[<System.ComponentModel.TypeConverter(typeof(System.Configuration.TimeSpanSecondsOrInfiniteConverter))>]
[<System.Configuration.ConfigurationProperty("sqlCommandTimeout", DefaultValue="00:00:30")>]
member this.SqlCommandTimeout : TimeSpan with get, set
Public Property SqlCommandTimeout As TimeSpan
Özellik Değeri
SQL komutunun zaman aşımına uğradıktan sonra saniye olarak ne kadar süreyle zaman aşımına uğrar? Varsayılan değer 30 saniyedir.
- Öznitelikler
Örnekler
Aşağıdaki kod örneği, özelliğinin nasıl alınduğunu SqlCommandTimeout gösterir. Nesneye nasıl erişeceğinizi öğrenmek için sınıf konusunun SessionStateSection kod örneğine SessionStateSection bakın.
// Display the current SqlCommandTimeout property value.
Console.WriteLine("SqlCommandTimeout: {0}",
sessionStateSection.SqlCommandTimeout);
' Display the current SqlCommandTimeout property value.
Console.WriteLine("SqlCommandTimeout: {0}", _
sessionStateSection.SqlCommandTimeout)