//
// DomainAcquirer.cs
//
// Contact:
// Moonlight List (moonlight-list@lists.ximian.com)
//
// Copyright 2010 Novell, Inc.
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
using System;
using System.IO;
namespace System.Windows.Media{
public class DomainAcquirer {
public DomainAcquirer ()
{
Console.WriteLine ("System.Windows.Media.DomainAcquirer.ctor: NIEX");
throw new NotImplementedException ();
}
protected virtual void OnJoinDomain (Stream joinChallenge, Uri domainServerUri)
{
Console.WriteLine ("System.Windows.Media.DomainAcquirer.OnJoinDomain: NIEX");
throw new NotImplementedException ();
}
protected virtual void OnLeaveDomain (Stream leaveChallenge, Uri domainServerUri)
{
Console.WriteLine ("System.Windows.Media.DomainAcquirer.OnLeaveDomain: NIEX");
throw new NotImplementedException ();
}
protected void SetJoinDomainResponse (Stream domainResponse)
{
Console.WriteLine ("System.Windows.Media.DomainAcquirer.SetJoinDomainResponse: NIEX");
throw new NotImplementedException ();
}
protected void SetLeaveDomainResponse (Stream domainResponse)
{
Console.WriteLine ("System.Windows.Media.DomainAcquirer.SetLeaveDomainResponse: NIEX");
throw new NotImplementedException ();
}
public void JoinDomainAsync (Guid serviceId, Guid accountId, Uri domainServerUrl, string friendlyName)
{
Console.WriteLine ("System.Windows.Media.DomainAcquirer.JoinDomainAsync: NIEX");
throw new NotImplementedException ();
}
public void LeaveDomainAsync (Guid serviceId, Guid accountId, Uri domainServerUrl)
{
Console.WriteLine ("System.Windows.Media.DomainAcquirer.LeaveDomainAsync: NIEX");
throw new NotImplementedException ();
}
protected virtual void OnCancel ()
{
Console.WriteLine ("System.Windows.Media.DomainAcquirer.OnCancel: NIEX");
throw new NotImplementedException ();
}
public void DomainJoinAsyncCancel ()
{
Console.WriteLine ("System.Windows.Media.DomainAcquirer.DomainJoinAsyncCancel: NIEX");
throw new NotImplementedException ();
}
public void DomainLeaveAsyncCancel ()
{
Console.WriteLine ("System.Windows.Media.DomainAcquirer.DomainLeaveAsyncCancel: NIEX");
throw new NotImplementedException ();
}
public string CustomData {
get {
Console.WriteLine ("System.Windows.Media.DomainAcquirer.get_CustomData: NIEX");
throw new NotImplementedException ();
}
set {
Console.WriteLine ("System.Windows.Media.DomainAcquirer.set_CustomData: NIEX");
throw new NotImplementedException ();
}
}
public event EventHandler<DomainOperationCompletedEventArgs> DomainOperationCompleted;
}
}
|