a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
23 lines
366 B
C#
23 lines
366 B
C#
//
|
|
// PeerTransportSecuritySettings.cs
|
|
//
|
|
// Author:
|
|
// Atsushi Enomoto <atsushi@ximian.com>
|
|
//
|
|
// Copyright (C) 2009 Novell, Inc.
|
|
//
|
|
|
|
using System;
|
|
|
|
namespace System.ServiceModel
|
|
{
|
|
public sealed class PeerTransportSecuritySettings
|
|
{
|
|
internal PeerTransportSecuritySettings ()
|
|
{
|
|
}
|
|
|
|
public PeerTransportCredentialType CredentialType { get; set; }
|
|
}
|
|
}
|