DotAmf.ServiceModel.Dispatcher.AmfEndpointContext.IsContractRegistered C# (CSharp) 메소드

IsContractRegistered() 개인적인 메소드

Check if type is registered as a data contract.
private IsContractRegistered ( Type type ) : bool
type System.Type
리턴 bool
        private bool IsContractRegistered(Type type)
        {
            if (type == null) throw new ArgumentNullException("type");

            return _contracts.Contains(type);
        }