System.ServiceModel.Description.ClientCredentials.Clone C# (CSharp) 메소드

Clone() 공개 메소드

public Clone ( ) : ClientCredentials
리턴 ClientCredentials
		public ClientCredentials Clone ()
		{
			ClientCredentials ret = CloneCore ();
			if (ret.GetType () != GetType ())
				throw new NotImplementedException ("CloneCore() must be implemented to return an instance of the same type in this custom ClientCredentials type.");
			return ret;
		}