WebReference.AppSettingUrlKey プロパティ

定義

Web 参照の URL キーを取得します。

public:
 property System::String ^ AppSettingUrlKey { System::String ^ get(); };
public string AppSettingUrlKey { get; }
member this.AppSettingUrlKey : string
Public ReadOnly Property AppSettingUrlKey As String

プロパティ値

Web 参照の URL キーを含む String

次のコード例は、このプロパティの使用方法を示しています。 このコード例は、WebReference クラスのために提供されている大規模な例の一部です。

// Print some information about the web reference.
Console.WriteLine("Base Url = {0}", reference.AppSettingBaseUrl);
Console.WriteLine("Url Key = {0}", reference.AppSettingUrlKey);
Console.WriteLine("Documents = {0}", reference.Documents.Count);

適用対象